/* ==================================================
   LOGISTIKI AXIA - CUSTOM STYLES
   Author: Παρτάλης Α. Σταύρος
   Description: Professional Accounting Services Website
   ================================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Floating Shapes Background */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
height: 160px; /* ΠΡΟΣΘΗΚΗ - άλλαξε το νούμερο */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    transform: translateY(-120px); /* ΠΡΟΣΘΗΚΗ - άλλαξε το νούμερο */
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
   }

.logo i {
    color: #ff6b35;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-links a:hover {
    color: #ff6b35;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Enhanced Background */
.hero {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/><circle cx="200" cy="150" r="3" fill="rgba(255,107,53,0.3)"/><circle cx="800" cy="250" r="2" fill="rgba(255,107,53,0.5)"/><circle cx="400" cy="400" r="4" fill="rgba(255,107,53,0.2)"/><circle cx="1000" cy="100" r="2" fill="rgba(255,107,53,0.4)"/></svg>');
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(100, 181, 246, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
transform: translateY(-60px); /* Προσθήκη - άλλαξε το νούμερο */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ?? MOBILE HERO FIX - ΠΡΟΣΘΕΣΤΕ ΑΥΤΟ ΜΕΤΑ ΤΟΝ .hero CSS */

@media (max-width: 768px) {
    .hero {
        height: 50vh !important; /* Μικρότερο ύψος για mobile */
        min-height: 350px !important;
        padding: 20px !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important; /* Μικρότερο κείμενο */
        margin-bottom: 0.8rem !important;
    }
    
    .hero-content p {
        font-size: 1.1rem !important; /* Μικρότερο κείμενο */
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 45vh !important; /* Ακόμα μικρότερο για πολύ μικρές οθόνες */
        min-height: 300px !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
}

/* 🔥 NOTICE BANNER MOBILE FIX - ΣΩΣΤΟ CSS */
@media (max-width: 768px) {
    .notice-banner {
        display: block !important;
        position: relative !important;
        top: 10px !important; /* ΑΛΛΑΞΕ ΑΥΤΟ ΤΟ ΝΟΥΜΕΡΟ ΓΙΑ ΤΕΣΤ */
        z-index: 1000 !important;
        margin: 0px 15px 10px 15px !important;
        padding: 15px !important;
        background: rgba(255, 107, 53, 0.95) !important;
        border-radius: 10px !important;
        backdrop-filter: blur(10px) !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    }
    
    .notice-content {
        display: block !important;
        color: #FFD700 !important; /* ?? ΚΙΤΡΙΝΑ ΓΡΑΜΜΑΤΑ */
    }
    
    .notice-text {
        display: block !important;
        text-align: center !important;
        color: #FFD700 !important; /* ?? ΚΙΤΡΙΝΑ ΓΡΑΜΜΑΤΑ */
        line-height: 1.4 !important;
        font-weight: bold !important; /* ?? ΕΝΤΟΝΑ ΓΡΑΜΜΑΤΑ */
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important; /* ? ΣΚΙΑ ΓΙΑ ΚΑΛΥΤΕΡΗ ΟΡΑΤΟΤΗΤΑ */
    }
    
    .notice-highlight {
        display: inline-block !important;
        background: #FFD700 !important; /* ?? ΚΙΤΡΙΝΟ ΦΟΝΤΟ */
        color: #FF6B35 !important; /* ?? ΠΟΡΤΟΚΑΛΙ ΓΡΑΜΜΑΤΑ */
        padding: 4px 8px !important;
        border-radius: 12px !important;
        font-weight: bold !important;
        font-size: 0.8rem !important;
        margin-right: 8px !important;
    }
    
    .notice-message {
        color: #FFD700 !important; /* ?? ΚΙΤΡΙΝΑ ΓΡΑΜΜΑΤΑ */
        font-size: 0.9rem !important;
        font-weight: bold !important; /* ?? ΕΝΤΟΝΑ */
        display: block !important;
        margin: 8px 0 !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    }
    
    .notice-cta {
        color: #FFFFFF !important; /* ? ΛΕΥΚΑ ΓΡΑΜΜΑΤΑ ΓΙΑ CTA */
        font-weight: bold !important;
        font-size: 0.9rem !important;
        display: block !important;
        margin-top: 5px !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important; /* ?? ΙΣΧΥΡΗ ΣΚΙΑ */
    }
    
    .notice-close {
        position: absolute !important;
        top: 5px !important;
        right: 10px !important;
        color: #FFD700 !important; /* ?? ΚΙΤΡΙΝΟ Χ */
        background: rgba(0, 0, 0, 0.3) !important; /* ?? ΣΚΟΥΡΟ ΦΟΝΤΟ */
        border: none !important;
        border-radius: 50% !important;
        width: 25px !important;
        height: 25px !important;
        cursor: pointer !important;
        font-weight: bold !important;
    }
    
    /* ? ΚΡΑΤΑ ΤΗΝ PROGRESS BAR - ΒΕΛΤΙΩΜΕΝΗ */
    .notice-progress {
        margin-top: 10px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .notice-progress .progress-bar {
        height: 4px !important; /* Λίγο πιο παχιά για καλύτερη ορατότητα */
        background: rgba(255, 255, 255, 0.4) !important; /* Πιο ορατό φόντο */
        border-radius: 2px !important;
        overflow: hidden !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .notice-progress .progress-bar::after {
        content: '';
        display: block;
        height: 100%;
        background: linear-gradient(90deg, #FFD700, #FFFFFF) !important; /* ??? ΚΙΤΡΙΝΟ ΣΕ ΛΕΥΚΟ */
        width: 100%;
        animation: progress-flow 3s ease-in-out infinite;
    }
}

@keyframes progress-flow {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button {
    background: linear-gradient(45deg, #007bff, #0056b3) !important;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3) !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4) !important;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Section Enhanced */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #2a5298);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(42, 82, 152, 0.1));
    border-radius: 50%;
    z-index: -1;
}

/* ===== SERVICE IMAGES ENHANCEMENT ===== */
.service-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-image {
    border-color: #ff6b35;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    filter: brightness(1.1) contrast(1.1);
}

/* Enhanced service icon container */
.service-icon {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.08), rgba(42, 82, 152, 0.08));
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon::after {
    width: 140px;
    height: 140px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.15), rgba(42, 82, 152, 0.15));
}


/* Floating effect for service images */
.service-image {
    animation: serviceFloat 6s ease-in-out infinite;
}

.service-card:nth-child(1) .service-image { animation-delay: 0s; }
.service-card:nth-child(2) .service-image { animation-delay: 1s; }
.service-card:nth-child(3) .service-image { animation-delay: 2s; }
.service-card:nth-child(4) .service-image { animation-delay: 3s; }
.service-card:nth-child(5) .service-image { animation-delay: 4s; }
.service-card:nth-child(6) .service-image { animation-delay: 5s; }

@keyframes serviceFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

/* Enhanced hover effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card h3,
.service-card p {
    position: relative;
    z-index: 2;
}

/* Image loading animation */
.service-image {
    opacity: 0;
    animation: fadeInService 0.8s ease forwards;
}

.service-card:nth-child(1) .service-image { animation-delay: 0.1s; }
.service-card:nth-child(2) .service-image { animation-delay: 0.2s; }
.service-card:nth-child(3) .service-image { animation-delay: 0.3s; }
.service-card:nth-child(4) .service-image { animation-delay: 0.4s; }
.service-card:nth-child(5) .service-image { animation-delay: 0.5s; }
.service-card:nth-child(6) .service-image { animation-delay: 0.6s; }
.service-card:nth-child(7) .service-image { animation-delay: 0.7s; }
.service-card:nth-child(8) .service-image { animation-delay: 0.8s; }

@keyframes fadeInService {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-image {
        width: 70px;
        height: 70px;
    }
    
    .service-icon {
        height: 100px;
    }
    
    .service-icon::after {
        width: 100px;
        height: 100px;
    }
    
    .service-card:hover .service-icon::after {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .service-image {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        height: 90px;
    }
    
    .service-icon::after {
        width: 90px;
        height: 90px;
    }
}

/* Enhanced service card hover */
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-card:hover .service-image {
    animation-play-state: paused;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section Enhanced */
.about {
    padding: 120px 0;
    background: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1e3c72;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #2a5298);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.about-features li:hover {
    color: #1e3c72;
    transform: translateX(10px);
}

.about-features i {
    color: #ff6b35;
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
}


/* ===== ENHANCED ABOUT IMAGE SECTION ===== */
.about-image {
    position: relative;
    height: auto; /* Αλλαγή από σταθερό ύψος */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Μικρότερη φωτογραφία */
.about-image-main.compact {
    height: 280px; /* Μικρότερο από τα 350px */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.about-image-main {
    position: relative;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.about-image-main:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.about-image-main:hover .about-photo {
    transform: scale(1.1);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(30, 60, 114, 0.85) 0%, 
        rgba(42, 82, 152, 0.7) 50%,
        rgba(255, 107, 53, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.about-image-main:hover .about-image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(30px);
    transition: transform 0.5s ease 0.2s;
}

.about-image-main:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Video Section Styles */
.about-video-section {
    margin-top: 1rem;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.about-video {
    width: 100%;
    height: 250px; /* Σταθερό ύψος */
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-video:hover {
    transform: scale(1.02);
}

/* Video Overlay - εμφανίζεται πάνω από το video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(30, 60, 114, 0.8) 0%, 
        rgba(255, 107, 53, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 20px;
    cursor: pointer;
    pointer-events: none !important;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-info {
    text-align: center;
    color: white;
    padding: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
}

.video-container:hover .video-info {
    transform: translateY(0);
}

.video-info i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.video-info h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.video-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.about-video {
    position: relative;
    z-index: 2;
}


.floating-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    height: auto; /* Αλλαγή από σταθερό ύψος */
    margin-top: 15px !important;
}

.floating-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: #1e3c72;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(30px);
    animation: floatUp 0.8s ease forwards;
}

.floating-stat:nth-child(1) { animation-delay: 0.2s; }
.floating-stat:nth-child(2) { animation-delay: 0.4s; }
.floating-stat:nth-child(3) { animation-delay: 0.6s; }

.floating-stat:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #ff6b35;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.floating-stat i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.floating-stat span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3c72;
    line-height: 1.3;
}

/* Animations */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Integration animations */
.about-image {
    opacity: 0;
    animation: fadeInAbout 1s ease 0.3s forwards;
}

@keyframes fadeInAbout {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tax Calculator Section */
.calculator {
    padding: 60px 0; /* ?? ΑΛΛΑΞΕ ΑΥΤΟ */
    margin-top: -20px; /* ?? ΠΡΟΣΘΕΣΕ ΑΥΤΟ ΓΙΑ ΝΑ ΠΑΕΙ ΠΙΟ ΠΑΝΩ */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    transform: translateY(-30px); /* ?? ΠΡΟΣΘΕΣ ΑΥΤΟ */
}

.calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.calculator-container {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin: 0rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.calculator-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.calculator .form-group {
    margin-bottom: 1.5rem;
}

.calculator .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1e3c72;
    font-size: 1rem;
}

.calculator .form-group label i {
    color: #ff6b35;
    font-size: 1.1rem;
}

.info-tooltip {
    position: relative;
    cursor: help;
    margin-left: 5px;
}

.info-tooltip i {
    color: #7f8c8d !important;
    font-size: 0.9rem !important;
}

.info-tooltip:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #34495e;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.info-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #34495e;
    z-index: 1000;
}



.calc-select,
.calc-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: #333;
}

.calc-select:focus,
.calc-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.calculator-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
}

.calc-btn.primary {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.calc-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.calc-btn.secondary {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.calc-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 60, 114, 0.4);
}

.calc-btn.tertiary {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.calc-btn.tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

/* Results Section */
.calculator-results {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #e1e8ed;
}

.results-title {
    color: #1e3c72;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.results-content {
    display: grid;
    gap: 1rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
}

.result-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.result-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.result-value {
    font-weight: bold;
    color: #ff6b35;
    font-size: 1.1rem;
}

.calc-message {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.calculation-details {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-top: 1.5rem;
}

.calculation-title {
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.calculation-text {
    font-family: 'Courier New', monospace;
    line-height: 1.8;
    color: #555;
    font-size: 0.95rem;
}

/* Tax Brackets Info */
.tax-brackets-info {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.tax-brackets-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.tax-brackets-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tax-brackets-info h3 i {
    color: #ff6b35;
}



.tax-brackets-subtitle {
    text-align: center;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.tax-brackets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.tax-bracket-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tax-bracket-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.bracket-range {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bracket-rate {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
}

/* Print Styles */
.print-container {
    display: none;
    font-family: 'Arial', sans-serif;
    padding: 20px;
    background: white;
}

@media print {
    body * {
        visibility: hidden;
    }
    
    .print-container,
    .print-container * {
        visibility: visible;
        display: block !important;
    }
    
    .print-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
    }
}

.print-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
}

.print-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.print-subtitle {
    font-size: 16px;
    margin-bottom: 5px;
}

.print-section {
    margin-bottom: 25px;
    page-break-inside: avoid;
}

.print-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

.print-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.print-table th,
.print-table td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
}

.print-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.print-total {
    font-weight: bold;
    background-color: #f9f9f9;
}

.print-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

/* Blog Section */
.blog {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}


.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #ff6b35;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid transparent;
}

.blog-read-more:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateX(5px);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Blog CTA Section */
.blog-cta {
    margin-top: 5rem;
    text-align: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.blog-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: white;
    transform: scale(1.02);
}

.newsletter-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: bold;
    color: #ff6b35;
}

/* Contact Section Enhanced */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="60" cy="30" r="1.5" fill="rgba(255,107,53,0.3)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    color: #ff6b35;
    margin-top: 0.3rem;
}




.contact-form {
    background: rgba(255,255,255,0.15);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    transform: scale(1.02);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn.loading {
    background-color: #6c757d;
}

/* Contact Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    animation: fadeIn 0.5s ease-in-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Map Section Styles */
.map-section {
    margin-top: 4rem;
    text-align: center;
}

.map-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: contrast(1.1) saturate(1.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 280px;
    z-index: 10;
}

.map-info h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-info h4 i {
    color: #ff6b35;
}

.map-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: white;
}




/* Footer Enhanced */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ff6b35;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.7;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-5px);
}

/* Back to Top Button Enhanced */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* ?? AI Chatbot Navigation Link Styling */
.chatbot-nav-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    border: none !important;
}

.chatbot-nav-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6) !important;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

.chatbot-nav-link i {
    margin-right: 6px !important;
    font-size: 1.1em !important;
}

/* ?? Chatbot Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
}

.back-button, .clear-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.clear-button {
    background: rgba(220, 53, 69, 0.7);
}

.clear-button:hover {
    background: rgba(220, 53, 69, 0.9);
    transform: translateY(-2px);
}


/* ?? CHATBOT TAB COMPLETE STYLING */
#chatbot-tab {
    display: none;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.chatbot-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-title .emoji {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.chatbot-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}


.sidebar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.sidebar h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.quick-topics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.topic-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.7rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: left;
}

.topic-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.chat-area {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.messages-container {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.welcome-message {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem;
}

.welcome-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.input-area {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.message-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.message-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.send-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}



/* ?? MESSAGE STYLES */
.message {
    max-width: 80%;
    margin-bottom: 1rem;
    animation: fadeInUp 0.3s ease;
}

.user-message {
    align-self: flex-end;
    margin-left: auto;
}

.bot-message {
    align-self: flex-start;
    margin-right: auto;
}

.message-content {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    word-wrap: break-word;
    line-height: 1.5;
}

.user-message .message-content {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-bottom-right-radius: 5px;
}

.bot-message .message-content {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-bottom-left-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.5rem;
    text-align: right;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.bot-message .message-time {
    color: #666;
    text-align: left;
}

/* ?? MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .chatbot-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: calc(100vh - 100px);
        padding: 1rem;
    }
    
    .sidebar {
        order: 2;
        height: auto;
        padding: 1rem;
    }
    
    .chat-area {
        order: 1;
        min-height: 60vh;
    }
    
    .message {
        max-width: 90%;
    }
    
    .chatbot-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-buttons {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .chatbot-title {
        font-size: 1.4rem;
        text-align: center;
    }
}







/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(30, 60, 114, 0.95);
        flex-direction: column;
        padding: 2rem;
        backdrop-filter: blur(10px);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 1rem;
        max-width: 100%;
    }

    .map-container iframe {
        height: 300px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }


.calculator-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calculator-buttons {
        flex-direction: column;
        align-items: center;
    }

    .calc-btn {
        width: 100%;
        max-width: 300px;
    }

    .tax-brackets-grid {
        grid-template-columns: 1fr;
    }

    .result-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* About image responsive */
    .about-image {
        margin-top: 2rem;
    }
    
    .about-image-main.compact {
        height: 220px;
    }
    
    .about-video {
        height: 200px;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-stat {
        padding: 1.2rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .floating-stat i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    /* Mobile header fixes */
    .header-left .company-info {
        display: none !important;
    }
    
    header {
        padding: 10px 0 !important;
        min-height: auto !important;
    }
    
    .mobile-menu {
        width: 25px !important;
        height: 20px !important;
    }
    
    .company-logo {
        max-width: 30px !important;
        max-height: 30px !important;
    }
    
    nav {
        padding: 5px 0 !important;
    }
}

@media (max-width: 480px) {
    .about-image-main.compact {
        height: 180px;
    }
    
    .about-video {
        height: 160px;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info i {
        font-size: 2rem;
    }
    
    .video-info h4 {
        font-size: 1.1rem;
    }

.header-left .company-info {
    display: none !important;
}

.header-left .logo-container {
    display: none !important;
}
    
    header {
        padding: 5px 0 !important;
        text-align: center !important;
    }
    
    nav {
        justify-content: center !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===== ΒΕΛΤΙΩΜΕΝΟ ANIMATED NOTICE BANNER ===== */
.notice-banner {
    background: linear-gradient(45deg, #ff6b35, #ff8a65, #2a5298, #1e3c72);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 12px 0;
    position: relative;
    z-index: 998;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(255, 107, 53, 0.3);
    margin: 0;
    display: block;
}

.notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.notice-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.notice-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.notice-message {
    flex: 1;
    text-align: center;
    transition: opacity 0.5s ease-in-out;
}

.notice-cta {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notice-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    width: 0%;
    animation: progressFlow 4s ease-in-out infinite;
}

.notice-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}


@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes progressFlow {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Mobile dropdown text fix */
@media (max-width: 768px) {
    .notice-text {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .notice-message {
        order: 1;
    }
    
    .notice-highlight {
        order: 2;
        font-size: 0.8rem;
    }
    
    .notice-cta {
        order: 3;
        font-size: 0.85rem;
        padding: 4px 12px;
    }
    
    .notice-banner {
        padding: 15px 0;
        top: 60px;
    }

    .dropdown-content {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 0 !important;
        padding: 0 !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        margin-top: 5px !important;
    }
    
    .dropdown-content a {
        color: white !important;
        padding: 12px 16px !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        transition: background-color 0.3s ease !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-weight: 500 !important;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.2) !important;
        color: #FFD700 !important;
        transform: translateX(5px) !important;
    }
    
    .dropdown-content a:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-content a i {
        color: #ff6b35 !important;
    }
    
    .dropdown-content a:hover i {
        color: #FFD700 !important;
    }
    
    .dropdown-nav:hover .dropdown-content {
        display: block !important;
        animation: mobileDropdownShow 0.3s ease !important;
    }
}

@keyframes mobileDropdownShow {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .dropdown-content {
        width: calc(100vw - 40px) !important;
        left: -20px !important;
        max-width: 300px !important;
    }
    
    .dropdown-content a {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }
}

/* ===== ENHANCED HEADER STYLES ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}


.header-left {
    flex: 0 0 300px; /* ΑΛΛΑΓΗ: Σταθερό πλάτος */
    width: 300px; /* ΠΡΟΣΘΗΚΗ */
    transform: translateY(110px);
}

.company-info .company-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
}

.company-name i {
    color: #ff6b35;
    font-size: 1.8rem;
}

.owner-name {
    color: #fff;
    font-size: 1.2rem;
}

.separator {
    color: #ff6b35;
    font-size: 1.4rem;
    margin: 0 0.3rem;
}

.brand-name {
    color: #fff;
    font-size: 1.4rem;
}

.header-right {
    flex: 1;
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #fff;
}

.contact-info span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.contact-info i {
    color: #ff6b35;
    width: 15px;
    text-align: center;
}

.company-logo {
    width: 100px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.company-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}




/* Responsive για το νέο header */
@media (max-width: 1200px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }
    
    .header-left,
    .header-right {
        width: 100%;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .contact-info span {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .company-name {
        flex-direction: column;
        gap: 0.3rem !important;
        text-align: center;
    }
    
    .owner-name,
    .brand-name {
        font-size: 1rem !important;
    }
    
    .separator {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info span {
        font-size: 0.8rem;
    }
}

/* ===== FAQ SECTION STYLES ===== */
.faq {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.section-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInImage 0.8s ease forwards;
}

.section-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.section-icon::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff6b35;
    z-index: 3;
}

.section-icon:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.section-icon:hover .section-image {
    filter: brightness(0.7);
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeInImage 0.8s ease forwards;
}

.faq-item:nth-child(1) .faq-icon { animation-delay: 0.1s; }
.faq-item:nth-child(2) .faq-icon { animation-delay: 0.2s; }
.faq-item:nth-child(3) .faq-icon { animation-delay: 0.3s; }
.faq-item:nth-child(4) .faq-icon { animation-delay: 0.4s; }
.faq-item:nth-child(5) .faq-icon { animation-delay: 0.5s; }
.faq-item:nth-child(6) .faq-icon { animation-delay: 0.6s; }

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.faq-item:hover .faq-icon {
    border-color: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.faq-item.active .faq-icon {
    border-color: white;
    filter: brightness(1.1);
    transform: scale(1.1);
}


.faq-question-content h3 {
    flex: 1;
    margin: 0;
    color: #1e3c72;
    font-size: 1.2rem;
    font-weight: 600;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-question i {
    color: #ff6b35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    width: 20px;
    text-align: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    color: white;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* ===== PAYMENTS SECTION STYLES ===== */
.payments {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.payments::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.payments .container {
    position: relative;
    z-index: 2;
}

.payments .section-title {
    color: white;
}

.payments .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.payment-card:nth-child(1) { animation-delay: 0.1s; }
.payment-card:nth-child(2) { animation-delay: 0.3s; }
.payment-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.payment-card:hover::before {
    left: 100%;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.payment-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.payment-card:hover .payment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.payment-header h3 {
    color: #1e3c72;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.payment-details {
    position: relative;
    z-index: 2;
}

.payment-info {
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(30, 60, 114, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 600;
    width: 100%;
    margin-bottom: 0.3rem;
}

.info-label i {
    color: #ff6b35;
    width: 20px;
}



.info-value {
    color: #1e3c72;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    font-size: 0.85rem;
    text-align: left;
    word-break: break-all;
    white-space: normal;
    line-height: 1.3;
    width: auto;
    flex: 1;
    min-width: 180px;
}

/* IBAN specific styling */
.payment-info .info-row:nth-child(2) .info-value {
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    word-spacing: 2px !important;
    padding: 0.8rem !important;
}

.copy-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Credit Card Form Styles */
.credit-card-form .form-group {
    margin-bottom: 1.5rem;
}

.credit-card-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #1e3c72;
    font-weight: 600;
}

.credit-card-form label i {
    color: #ff6b35;
    width: 20px;
}

.card-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(30, 60, 114, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.card-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-btn {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
}

/* PayPal Styles */
.paypal-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #0070ba;
}

.paypal-description i {
    color: #0070ba;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.paypal-btn {
    background: linear-gradient(45deg, #0070ba, #003087);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.paypal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 112, 186, 0.4);
}

.paypal-benefits {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.benefit-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Security Notice */
.security-notice {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.security-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.security-text h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.security-text h4 i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.security-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}




/* ===== TEAM SHOWCASE SECTION - ΜΕΓΑΛΥΤΕΡΑ ΠΛΑΙΣΙΑ ===== */
.team-showcase {
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInTeam 1s ease 0.5s forwards;
}

@keyframes fadeInTeam {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.team-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    z-index: 2;
}

.team-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.team-image-container:hover .team-main-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(30, 60, 114, 0.8) 0%, 
        rgba(42, 82, 152, 0.6) 50%,
        rgba(255, 107, 53, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.team-image-container:hover .team-overlay {
    opacity: 1;
}

/* ΣΤΑΤΙΣΤΙΚΑ - ΣΤΗ ΜΕΣΗ ΤΗΣ ΕΙΚΟΝΑΣ */
.team-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 200px; /* ΑΛΛΑΓΗ: Στη μέση της εικόνας (από 280px) */
    padding: 0 15px;
}

/* ΜΕΓΑΛΥΤΕΡΑ STAT BADGES */
.stat-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.2rem 1rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpStats 0.8s ease forwards;
    
    /* ΜΕΓΑΛΥΤΕΡΟ ΜΕΓΕΘΟΣ */
    width: 160px;       /* ΑΛΛΑΓΗ: από 130px σε 160px */
    height: 120px;      /* ΑΛΛΑΓΗ: από 100px σε 120px */
    flex: 0 0 auto;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.stat-badge:nth-child(1) { animation-delay: 0.2s; }
.stat-badge:nth-child(2) { animation-delay: 0.4s; }
.stat-badge:nth-child(3) { animation-delay: 0.6s; }

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.03);
}

/* ΜΕΓΑΛΥΤΕΡΟΙ ΑΡΙΘΜΟΙ */
.team-stats .stat-number {
    font-size: 2rem !important;        /* ΑΛΛΑΓΗ: από 1.5rem σε 2rem */
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.3rem !important;  /* ΑΛΛΑΓΗ: από 0.15rem σε 0.3rem */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1 !important;
    text-align: center !important;
    word-break: keep-all !important;
}

/* ΜΕΓΑΛΥΤΕΡΑ ΓΡΑΜΜΑΤΑ */
.team-stats .stat-text {
    font-size: 1rem !important;        /* ΑΛΛΑΓΗ: από 0.8rem σε 1rem */
    line-height: 1.2 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: center !important;
}

@keyframes slideUpStats {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE ΓΙΑ ΤΑ ΜΙΚΡΑ ΠΛΑΙΣΙΑ */
@media (max-width: 768px) {
    .team-stats {
        gap: 1rem;
        margin-top: 240px;
    }
    
    .stat-badge {
        padding: 1rem 0.8rem;
        max-width: 120px;
        min-height: 80px;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-text {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .team-stats {
        gap: 0.8rem;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 220px;
    }
    
    .stat-badge {
        padding: 0.8rem 0.6rem;
        max-width: 100px;
        min-height: 70px;
        flex: 1;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-text {
        font-size: 0.65rem;
        line-height: 1.2;
    }
}






@keyframes slideUpStats {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px) scale(1.05);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    white-space: nowrap;
}


















/* ?? DOWNLOADS SECTION - ΒΕΛΤΙΩΜΕΝΟ */
.downloads {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.downloads::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}




/* ?? ΚΕΝΤΡΙΚΟ INFO CARD */
.downloads-center-info {
    margin: 3rem 0 4rem 0;
    display: flex;
    justify-content: center;
}

.downloads-center-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.2);
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.downloads-center-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.downloads-center-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.downloads-center-header i {
    font-size: 2rem;
    color: #ff6b35;
}

.downloads-center-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.downloads-center-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.downloads-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.download-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.download-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.download-stat i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.download-stat span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}





/* ??? ΚΑΤΗΓΟΡΙΕΣ DOWNLOADS */
.downloads-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-title .word-icon { color: #2b5797; }
.category-title .excel-icon { color: #107c41; }
.category-title .pdf-icon { color: #dc3545; }
.category-title .html-icon { color: #e34c26; }

.category-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}







/* ?? ΣΩΣΤΟ GRID LAYOUT - ΣΑΝ ΤΟ TEST.HTML */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* ?? DOWNLOAD CARDS - ΒΕΛΤΙΩΜΕΝΑ */
.download-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 420px;
    opacity: 0;
    animation: slideInDownload 0.8s ease forwards;
}

.download-card:nth-child(1) { animation-delay: 0.1s; }
.download-card:nth-child(2) { animation-delay: 0.2s; }
.download-card:nth-child(3) { animation-delay: 0.3s; }
.download-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInDownload {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.download-card:hover::before {
    left: 100%;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Ειδικά χρώματα για κάθε τύπο */
.word-card {
    border-left: 4px solid #2b5797;
}

.excel-card {
    border-left: 4px solid #107c41;
}

.pdf-card {
    border-left: 4px solid #dc3545;
}

.html-card {
    border-left: 4px solid #e34c26;
}

.download-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.download-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Ειδικά χρώματα για icons */
.word-card .download-icon {
    background: linear-gradient(135deg, #2b5797, #1e4084);
}

.excel-card .download-icon {
    background: linear-gradient(135deg, #107c41, #0d5d31);
}

.pdf-card .download-icon {
    background: linear-gradient(135deg, #dc3545, #b02a37);
}

.html-card .download-icon {
    background: linear-gradient(135deg, #e34c26, #c1351d);
}

.download-card:hover .download-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.download-info h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.download-info .file-type {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
}


/* ?? DOWNLOAD COUNTER STYLING */
.download-counter {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.8rem;
    display: inline-block;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.download-counter:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}




.word-card .file-type {
    background: rgba(43, 87, 151, 0.1);
    color: #2b5797;
    border-color: rgba(43, 87, 151, 0.2);
}

.excel-card .file-type {
    background: rgba(16, 124, 65, 0.1);
    color: #107c41;
    border-color: rgba(16, 124, 65, 0.2);
}

.pdf-card .file-type {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.2);
}

.html-card .file-type {
    background: rgba(227, 76, 38, 0.1);
    color: #e34c26;
    border-color: rgba(227, 76, 38, 0.2);
}



/* ?? DOWNLOAD COUNTER STYLING */
.download-counter {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.8rem;
    display: inline-block;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.download-counter:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}






.download-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.download-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.file-details {
    border: 1px solid;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.word-card .file-details {
    background: rgba(43, 87, 151, 0.05);
    border-color: rgba(43, 87, 151, 0.1);
}

.excel-card .file-details {
    background: rgba(16, 124, 65, 0.05);
    border-color: rgba(16, 124, 65, 0.1);
}

.pdf-card .file-details {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.1);
}

.html-card .file-details {
    background: rgba(227, 76, 38, 0.05);
    border-color: rgba(227, 76, 38, 0.1);
}

.file-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid;
}

.word-card .file-detail-row {
    border-bottom-color: rgba(43, 87, 151, 0.1);
}

.excel-card .file-detail-row {
    border-bottom-color: rgba(16, 124, 65, 0.1);
}

.pdf-card .file-detail-row {
    border-bottom-color: rgba(220, 53, 69, 0.1);
}

.html-card .file-detail-row {
    border-bottom-color: rgba(227, 76, 38, 0.1);
}

.file-detail-row:last-child {
    border-bottom: none;
}

.file-detail-label {
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.file-detail-label i {
    width: 16px;
}

.word-card .file-detail-label i { color: #2b5797; }
.excel-card .file-detail-label i { color: #107c41; }
.pdf-card .file-detail-label i { color: #dc3545; }
.html-card .file-detail-label i { color: #e34c26; }

.file-detail-value {
    color: #1e3c72;
    font-weight: 600;
    font-size: 0.9rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 60, 114, 0.4);
    color: white;
    text-decoration: none;
}

.download-btn.preview {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.download-btn.preview:hover {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
}



/* ?? QUICK LINKS SECTION - ΒΕΛΤΙΩΜΕΝΟ */
.quick-links {
    margin-top: 4rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.2);
}

.quick-links h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quick-links p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.quick-link i {
    font-size: 1.5rem;
    color: #ff6b35;
    min-width: 24px;
}

.quick-link-content {
    text-align: left;
}

.quick-link-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.quick-link-desc {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== SERVICE WITH PARTNER STYLES ===== */
.service-with-partner {
    position: relative;
    overflow: visible;
}

.service-partner {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.partner-mini-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(30, 60, 114, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-mini-card:hover::before {
    left: 100%;
}

.partner-mini-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(30, 60, 114, 0.15));
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.partner-badge {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.rbs-mini-logo {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.partner-mini-card > span {
    display: block;
    color: #1e3c72;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.mini-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mini-partner-link:hover {
    background: linear-gradient(45deg, #e55a2b, #ff6b35);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Enhanced service card for partner integration */
.service-with-partner:hover {
    transform: translateY(-20px) scale(1.03);
}






.btn-calculator {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.btn-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-calculator i {
    margin-right: 8px;
}

/* ?? ΠΡΟΣΘΕΣΤΕ ΑΥΤΟ ΣΤΟ styles.css */

.btn-calculator-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-width: 200px;
    max-width: 280px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-calculator-modal:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8, #6a42a0);
}

.btn-calculator-modal:active:not(:disabled) {
    transform: translateY(-2px);
}

.btn-calculator-modal i {
    font-size: 2em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.btn-calculator-modal span {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.btn-calculator-modal small {
    font-size: 0.85em;
    opacity: 0.8;
    font-weight: 400;
    line-height: 1.3;
}

.btn-calculator-modal:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: #6c757d;
}

.btn-calculator-modal:disabled:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.calculator-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* ?? ΠΡΟΣΘΕΣΤΕ ΑΥΤΟ ΣΤΟ styles.css */

.dropdown-nav {
    position: relative;
    display: inline-block;
}

.dropdown-nav .dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: none;
    border: none;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-nav .dropbtn:hover {
    color: #667eea;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
    animation: dropdownFadeIn 0.3s ease;
}

.dropdown-content a {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #667eea !important;
}

.dropdown-nav:hover .dropdown-content {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal styles */
.calculator-modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
}

.modal-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(5px) !important;
    pointer-events: none !important;
}

.modal-container {
    position: relative !important;
    width: 95% !important;
    max-width: 1400px !important;
    height: 90% !important;
    max-height: 900px !important;
    margin: 2.5% auto !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    pointer-events: auto !important;
}

.calculator-modal.open {
    overflow: hidden !important;
}

body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

.modal-content {
    flex: 1 !important;
    position: relative !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    height: 75vh !important;
    padding: 0 !important;
}

#calculatorFrame {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}



/* AADE Modal Styles */
.aade-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.aade-modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.aade-modal-header {
    background: linear-gradient(135deg, #1a4d8f, #00509e);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aade-modal-header h2 {
    margin: 0;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.aade-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aade-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.aade-modal-body {
    height: 75vh;
    overflow: hidden;
}

.aade-widget-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* Responsive adjustments for downloads, payments, and other sections */
@media (max-width: 768px) {
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .download-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .download-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-links {
        padding: 2rem 1.5rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .calculator-buttons-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-calculator-modal {
        min-width: 250px;
        max-width: 300px;
    }

    /* Mobile dropdown */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown-nav:hover .dropdown-content {
        display: block;
    }

    /* Responsive adjustments for partner cards */
    .partner-mini-card {
        padding: 1.2rem;
    }
    
    .rbs-mini-logo {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .partner-mini-card > span {
        font-size: 1rem;
    }
    
    .mini-partner-link {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    /* Responsive for payments section */
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-card {
        padding: 2rem;
    }
    
    .payment-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .payment-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .paypal-benefits {
        flex-direction: column;
    }
    
    .security-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Responsive for team showcase */
    .team-image-container {
        height: 300px;
        margin: 0 1rem;
        border-radius: 15px;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-badge {
        padding: 1.5rem 2rem;
        width: 200px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }

    /* FAQ responsive adjustments */
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-image {
        width: 80px;
        height: 80px;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-question-content {
        gap: 0.8rem;
    }
    
    .faq-question-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-image-container {
        height: 250px;
    }
    
    .stat-badge {
        padding: 1rem 1.5rem;
        width: 160px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }

    .section-image {
        width: 60px;
        height: 60px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
    }
    
    .faq-question-content {
        gap: 0.6rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .download-card {
        padding: 1.2rem;
    }
    
    .download-content h4 {
        font-size: 1.1rem;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .official-link::after {
        position: relative;
        top: auto;
        right: auto;
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
}

/* Coming Soon Section */
.coming-soon-notice {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(30, 60, 114, 0.05));
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.coming-soon-content i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.coming-soon-content h4 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Downloads Info Cards */
.downloads-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}



/* ?? ΠΡΟΣΘΗΚΗ ΣΤΟ ΤΕΛΟΣ ΤΟΥ styles.css */

/* ?? PREMIUM DOWNLOADS SYSTEM CSS */

/* Premium Modal */
.premium-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15000;
    animation: fadeIn 0.3s ease;
}

.premium-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.premium-modal-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    margin: 5vh auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideInUp 0.4s ease;
}

.premium-modal-header {
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.premium-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.premium-modal-content {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Product Info */
.premium-product-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 138, 101, 0.05));
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.premium-product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.premium-product-details h4 {
    color: #1e3c72;
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.premium-product-details p {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.premium-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.price-note {
    color: #666;
    font-size: 0.8rem;
}

/* Payment Methods */
.premium-payment-methods h4 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method-card:hover:not(.disabled) {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.payment-method-card.selected {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.payment-method-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-method-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1e3c72;
}

.payment-method-info {
    flex: 1;
}

.payment-method-info h5 {
    margin: 0 0 3px 0;
    color: #1e3c72;
    font-size: 1rem;
}

.payment-method-info p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

.payment-method-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.payment-method-badge.popular {
    background: #28a745;
    color: white;
}

.payment-method-badge.secure {
    background: #007bff;
    color: white;
}

.payment-method-badge.coming-soon {
    background: #ffc107;
    color: #212529;
}

/* Payment Details */
.selected-payment-details {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.payment-details h5 {
    color: #1e3c72;
    margin-bottom: 15px;
}

/* Bank Details */
.bank-info {
    margin-bottom: 20px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-weight: 600;
    color: #666;
}

.bank-value {
    color: #1e3c72;
    font-weight: 600;
}

.copy-iban-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.copy-iban-btn:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

.premium-amount {
    color: #ff6b35 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

/* Bank Instructions */
.bank-instructions {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.bank-instructions h6 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.bank-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.bank-instructions li {
    margin-bottom: 8px;
    color: #666;
}

.bank-instructions ul {
    margin: 5px 0;
    padding-left: 20px;
}

/* PayPal Details */
.paypal-info {
    text-align: center;
    padding: 20px;
}

.paypal-amount {
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Card Coming Soon */
.card-coming-soon {
    text-align: center;
    padding: 30px;
    color: #666;
}

.card-coming-soon i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 15px;
}

/* Action Buttons */
.premium-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.premium-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-btn.primary {
    background: #ff6b35;
    color: white;
}

.premium-btn.primary:hover:not(:disabled) {
    background: #e55a2b;
    transform: translateY(-2px);
}

.premium-btn.primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.premium-btn.secondary {
    background: #6c757d;
    color: white;
}

.premium-btn.secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Premium Badge for Cards */
.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.premium-badge.free {
    background: linear-gradient(45deg, #28a745, #20c997);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .premium-modal-container {
        width: 95%;
        margin: 2.5vh auto;
        max-height: 95vh;
    }
    
    .premium-modal-content {
        padding: 20px;
    }
    
    .premium-product-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .premium-modal-actions {
        flex-direction: column;
    }
    
    .premium-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations για Premium */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { 
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ===== PREMIUM NAV LINK ===== */
.premium-nav-link {
    background: linear-gradient(135deg, #ff6b35, #f94449) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 10px rgba(255,107,53,0.3) !important;
}

.premium-nav-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4) !important;
    color: white !important;
}

.premium-nav-link i {
    margin-right: 6px;
    animation: gem-sparkle 2s infinite;
}





/* ?? AI Chatbot Navigation Link Styling */
.chatbot-nav-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    border: none !important;
}

.chatbot-nav-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6) !important;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

.chatbot-nav-link i {
    margin-right: 6px !important;
    font-size: 1.1em !important;
}










@keyframes gem-sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Premium buttons enhancement */
.premium-btn {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    border: none !important;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190) !important;
    transform: translateY(-2px) !important;
}



/* Premium Shop Navigation Link */
.premium-nav-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.premium-nav-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4) !important;
    color: white !important;
}

.premium-nav-link i {
    font-size: 14px !important;
}



/* ΠΟΙΚΙΛΑ ΧΡΩΜΑΤΑ ΓΙΑ BOLD ΚΕΙΜΕΝΑ */
.chat-container .message.bot .message-content strong:nth-of-type(1),
.chat-container .message.bot .message-content b:nth-of-type(1) {
    color: #ff6b35 !important; /* Πορτοκαλί */
    font-weight: 700;
}

.chat-container .message.bot .message-content strong:nth-of-type(2),
.chat-container .message.bot .message-content b:nth-of-type(2) {
    color: #2563eb !important; /* Μπλε */
    font-weight: 700;
}

.chat-container .message.bot .message-content strong:nth-of-type(3),
.chat-container .message.bot .message-content b:nth-of-type(3) {
    color: #059669 !important; /* Πράσινο */
    font-weight: 700;
}

.chat-container .message.bot .message-content strong:nth-of-type(4),
.chat-container .message.bot .message-content b:nth-of-type(4) {
    color: #dc2626 !important; /* Κόκκινο */
    font-weight: 700;
}

.chat-container .message.bot .message-content strong:nth-of-type(5),
.chat-container .message.bot .message-content b:nth-of-type(5) {
    color: #7c3aed !important; /* Μωβ */
    font-weight: 700;
}

.chat-container .message.bot .message-content strong:nth-of-type(6),
.chat-container .message.bot .message-content b:nth-of-type(6) {
    color: #ff6b35 !important; /* Πορτοκαλί */
    font-weight: 700;
}


/* FIX CHATBOT MESSAGES AREA */
#messages, .messages-container {
    background: #f8f9fa !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
}

.message.bot-message {
    background: rgba(255, 255, 255, 0.9) !important;
    border-left: 4px solid #667eea !important;
}

.message.user-message {
    background: rgba(102, 126, 234, 0.1) !important;
    border-left: 4px solid #ff6b35 !important;
}

.welcome-message {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
}

/* Fix sidebar and menu colors */
.chat-sidebar, .quick-topics {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.quick-topics button, .quick-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.quick-topics button:hover, .quick-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

.chat-sidebar h3, .chat-sidebar h2, .quick-topics h3 {
    color: #ffd700 !important;
}



/* COMPLETE BEAUTIFUL CHATBOT - FINAL VERSION */

/* ΟΜΟΡΦΟ WELCOME MESSAGE */
.welcome-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 25px !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3) !important;
    margin: 15px !important;
}

.welcome-message h2 {
    color: #ffd700 !important;
    margin-bottom: 15px !important;
    font-size: 1.4em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.welcome-message h2::before {
    content: '??' !important;
    font-size: 1.5em !important;
    animation: bounce 2s infinite !important;
}

.welcome-message p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
    font-size: 1.05em !important;
}

/* ΟΜΟΡΦΑ QUICK BUTTONS */
.quick-topics {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    margin: 10px !important;
}

.quick-topics h3 {
    color: #ffd700 !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    font-size: 1.2em !important;
}

.quick-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    padding: 12px 15px !important;
    margin: 8px 5px !important;
    display: block !important;
    width: calc(100% - 10px) !important;
    font-size: 0.95em !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: left !important;
    backdrop-filter: blur(10px) !important;
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-3px) translateX(5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
    color: #ffd700 !important;
}

.quick-btn:active {
    transform: translateY(-1px) translateX(2px) !important;
}

/* USER MESSAGE STYLING */
.message.user-message {
    background: linear-gradient(135deg, #ff6b35 0%, #f7971e 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 18px 18px 5px 18px !important;
    margin-left: 20% !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.message.user-message .message-content {
    color: white !important;
    font-weight: 500 !important;
}

/* ΑΣΠΡΟ ΠΛΑΙΣΙΟ ΓΙΑ BOT ΑΠΑΝΤΗΣΕΙΣ */
.message.bot-message {
    background: white !important;
    color: #333 !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 15px !important;
    margin-right: 20% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    padding: 15px !important;
}

.message.bot-message .message-content {
    color: #333 !important;
    line-height: 1.6 !important;
}

/* MESSAGES CONTAINER */
#messages, .messages-container {
    background: #f8f9fa !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
}

/* ΟΜΟΡΦΕΣ ΣΧΕΤΙΚΕΣ ΕΡΩΤΗΣΕΙΣ με ΧΕΡΑΚΙ */
.related-questions {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 12px !important;
    padding: 15px !important;
    margin-top: 20px !important;
    border-left: 4px solid #667eea !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1) !important;
}

.related-questions h4 {
    color: #667eea !important;
    margin-bottom: 12px !important;
    font-size: 1.1em !important;
    text-align: center !important;
}

.related-question {
    background: rgba(102, 126, 234, 0.05) !important;
    border: 2px solid rgba(102, 126, 234, 0.1) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    margin: 8px 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: #333 !important;
    font-weight: 500 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* ΧΕΡΑΚΙ ΚΑΙ HOVER EFFECT */
.related-question::before {
    content: '??' !important;
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    font-size: 1.2em !important;
}

.related-question:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: #667eea !important;
    transform: translateX(8px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3) !important;
    cursor: pointer !important;
}

.related-question:hover::before {
    opacity: 1 !important;
    right: 10px !important;
    animation: pointFinger 0.6s ease !important;
}

.related-question:active {
    transform: translateX(4px) scale(0.98) !important;
}

/* CLICK EFFECT */
.related-question:hover::after {
    content: 'Κάντε κλικ για απάντηση!' !important;
    position: absolute !important;
    bottom: -25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 0.8em !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    animation: fadeInTooltip 0.3s ease forwards !important;
}

/* ANIMATIONS */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pointFinger {
    0% { 
        transform: translateY(-50%) scale(0.8); 
        opacity: 0; 
    }
    50% { 
        transform: translateY(-50%) scale(1.2); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(-50%) scale(1); 
        opacity: 1; 
    }
}

@keyframes fadeInTooltip {
    to {
        opacity: 1 !important;
        bottom: -30px !important;
    }
}





/* ?? ΠΡΟΣΘΗΚΗ: ΟΜΟΡΦΑ ΠΛΑΙΣΙΑ ΓΙΑ ΤΑ ΜΗΝΥΜΑΤΑ CHATBOT */

/* ΒΑΣΙΚΟ STYLING ΓΙΑ ΟΛΑ ΤΑ ΜΗΝΥΜΑΤΑ */
.messages-container > div:not(.related-questions) {
    margin: 15px 0 !important;
    padding: 18px 22px !important;
    border-radius: 18px !important;
    max-width: 80% !important;
    word-wrap: break-word !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15) !important;
    clear: both !important;
    font-size: 15px !important; /* +1 από 14px */
    line-height: 1.5 !important;
    position: relative !important;
}

/* USER MESSAGES - Μπλε gradient δεξιά (ακόμη πιο σκούρο) */
.messages-container > div:nth-child(even):not(.welcome-message):not(.related-questions) {
    background: linear-gradient(135deg, #4d5bc9 0%, #5d3a7e 100%) !important;
    color: white !important;
    float: right !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    border-bottom-right-radius: 6px !important;
    font-size: 15px !important; /* +1 */
}

/* BOT MESSAGES - Άσπρα με border αριστερά */
.messages-container > div:nth-child(odd):not(.welcome-message):not(.related-questions) {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
    float: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    border-bottom-left-radius: 6px !important;
    font-size: 15px !important; /* +1 */
}

/* CLEARFIX για σωστή τοποθέτηση */
.messages-container::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

/* WELCOME MESSAGE - Κεντραρισμένο με μεγαλύτερα γράμματα */
.welcome-message {
    float: none !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 15px auto !important; /* Κεντραρισμένο */
    font-size: 16px !important; /* +1 από 15px */
}

.welcome-message h2 {
    font-size: 1.5em !important; /* +0.1em από 1.4em */
    text-align: center !important;
}

.welcome-message p {
    font-size: 1.15em !important; /* +0.1em από 1.05em */
    text-align: center !important;
}

/* RELATED QUESTIONS - Διατήρηση styling */
.related-questions {
    float: none !important;
    max-width: 100% !important;
    font-size: 15px !important; /* +1 */
}

.related-question {
    font-size: 15px !important; /* +1 */
}

/* QUICK BUTTONS - Μεγαλύτερα γράμματα */
.quick-btn {
    font-size: 1.05em !important; /* +0.1em από 0.95em */
}

.quick-topics h3 {
    font-size: 1.3em !important; /* +0.1em από 1.2em */
}

/* ΓΕΝΙΚΗ ΑΥΞΗΣΗ ΓΡΑΜΜΑΤΩΝ ΣΤΟ CHATBOT */
.chatbot-container, .chat-area {
    font-size: 15px !important; /* Βάση +1 */
}

.chatbot-container * {
    font-size: inherit !important;
}

/* ===== ENHANCED TESTIMONIALS WITH REVIEW FORM ===== */

/* Enhanced existing testimonial card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: bold;
    color: #ff6b35;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

/* Review Form Section */
.review-form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.review-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #2a5298, #ff6b35);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.review-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.review-form-header h3 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.review-form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Form Styling */
.review-form {
    max-width: 700px;
    margin: 0 auto;
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1e3c72;
    font-size: 1rem;
}

.review-form label i {
    color: #ff6b35;
    font-size: 1.1rem;
    width: 16px;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: #333;
    font-family: inherit;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Character Counter */
.character-count {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Star Rating */
.rating-group {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    direction: rtl; /* Right to left for proper star selection */
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating .star {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.5;
}

.star-rating input[type="radio"]:checked ~ .star,
.star-rating .star:hover,
.star-rating .star:hover ~ .star {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Checkbox Styling */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
    color: #555;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e8ed;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ff6b35;
    border-color: #ff6b35;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Submit Button */
.submit-review-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.submit-review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-review-btn:hover::before {
    left: 100%;
}

.submit-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.submit-review-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.submit-review-btn.loading {
    background: #6c757d;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    animation: fadeIn 0.5s ease-in-out;
    border: 1px solid;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.form-message.warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

/* Security Notice */
.security-notice-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    padding: 15px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    color: #155724;
    font-size: 0.9rem;
    text-align: center;
}

.security-notice-review i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-form-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-form-header h3 {
        font-size: 1.6rem;
    }
    
    .star-rating .star {
        font-size: 1.8rem;
    }
    
    .submit-review-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .review-form-section {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .review-form input,
    .review-form select,
    .review-form textarea {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .star-rating .star {
        font-size: 1.6rem;
        gap: 0.3rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
}


/* ===== ERROR STYLES FOR REVIEW FORM ===== */

.review-form input.error,
.review-form select.error,
.review-form textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
    background-color: rgba(231, 76, 60, 0.05) !important;
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    margin-left: 0.2rem;
    animation: shake 0.5s ease-in-out;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: '??';
    font-size: 0.8rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Success state for inputs */
.review-form input:valid:not(:placeholder-shown),
.review-form select:valid,
.review-form textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

/* Loading states */
.review-form.submitting {
    pointer-events: none;
    opacity: 0.7;
}

.review-form.submitting::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1e3c72;
}

/* Form success animation */
.form-success {
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); background-color: rgba(40, 167, 69, 0.1); }
    100% { transform: scale(1); }
}


/* ===== MOBILE MEGA IMPROVEMENTS ===== */

/* ?? TAX BRACKETS - ΠΙΟ ΜΙΚΡΟ ΚΑΙ ΟΜΟΡΦΟ */
@media (max-width: 768px) {
    .tax-brackets-info {
        margin-top: 2rem !important;
        padding: 1.5rem !important;
        border-radius: 15px !important;
    }
    
    .tax-brackets-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .tax-brackets-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .tax-brackets-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .tax-bracket-item {
        padding: 0.8rem !important;
        border-radius: 8px !important;
    }
    
    .bracket-range {
        font-size: 0.8rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .bracket-rate {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .tax-brackets-grid {
        grid-template-columns: 1fr !important;
        gap: 0.6rem !important;
    }
    
    .tax-bracket-item {
        padding: 0.6rem !important;
    }
    
    .bracket-range {
        font-size: 0.75rem !important;
    }
    
    .bracket-rate {
        font-size: 1.1rem !important;
    }
}

/* ?? NEWSLETTER SECTION - ΠΙΟ ΣΤΕΝΟ */
@media (max-width: 768px) {
    .blog-cta {
        margin-top: 3rem !important;
        padding: 2rem 1.5rem !important;
        border-radius: 15px !important;
    }
    
    .blog-cta h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .blog-cta p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .newsletter-form {
        max-width: 320px !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .newsletter-input {
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
    }
    
    .newsletter-btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
    }
}

/* ?? QUICK LINKS - ΠΙΟ ΣΤΕΝΑ ΠΛΑΙΣΙΑ */
@media (max-width: 768px) {
    .quick-links {
        padding: 2rem 1.5rem !important;
        border-radius: 15px !important;
    }
    
    .quick-links h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .quick-links p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .links-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
    
    .quick-link {
        padding: 0.8rem 1rem !important;
        border-radius: 10px !important;
        font-size: 0.85rem !important;
    }
    
    .quick-link i {
        font-size: 1.2rem !important;
    }
    
    .quick-link-title {
        font-size: 0.9rem !important;
    }
    
    .quick-link-desc {
        font-size: 0.75rem !important;
    }
}

/* ?? PAYMENTS MODAL - ΠΙΟ ΜΙΚΡΟ ΠΛΑΙΣΙΟ */
@media (max-width: 768px) {
    .payment-details-section {
        margin-top: 20px !important;
    }
    
    .payment-details-card {
        padding: 20px !important;
        border-radius: 15px !important;
        margin: 0 10px !important;
    }
    
    .payment-details-header h3 {
        font-size: 1.2rem !important;
    }
    
    .bank-details-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .bank-detail-item {
        padding: 15px !important;
        border-radius: 8px !important;
    }
    
    .bank-detail-value span {
        font-size: 0.9rem !important;
    }
    
    .payment-instructions {
        padding: 15px !important;
        border-radius: 8px !important;
    }
    
    .contact-options {
        padding: 15px !important;
        border-radius: 8px !important;
    }
    
    .contact-methods {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .contact-method {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
    }
}

/* ?? DROPDOWN TOGGLE FUNCTIONALITY */
.dropdown-nav.active .dropdown-content {
    display: block !important;
}

.dropdown-nav .dropbtn {
    cursor: pointer !important;
}

.dropdown-nav .fa-chevron-down {
    transition: transform 0.3s ease !important;
}

.dropdown-nav.active .fa-chevron-down {
    transform: rotate(180deg) !important;
}

/* Mobile dropdown hover to click conversion */
@media (max-width: 768px) {
    .dropdown-nav:hover .dropdown-content {
        display: none !important; /* Disable hover */
    }
    
    .dropdown-nav.active .dropdown-content {
        display: block !important;
        animation: mobileDropdownShow 0.3s ease !important;
    }
    
    .dropdown-content {
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }
    
    .dropdown-nav.active .dropdown-content {
        max-height: 300px !important;
    }
}

/* ?? GENERAL MOBILE SPACING IMPROVEMENTS */
@media (max-width: 768px) {
    /* Reduced spacing για όλα τα sections */
    .services,
    .about,
    .calculator,
    .blog,
    .downloads,
    .payments,
    .contact {
        padding: 60px 0 !important;
    }
    
    .container {
        padding: 0 1rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .services,
    .about,
    .calculator,
    .blog,
    .downloads,
    .payments,
    .contact {
        padding: 40px 0 !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 2rem !important;
    }
}


/* ===== SMALLER SELECT DROPDOWN FOR REVIEW FORM ===== */

/* Make the select dropdown smaller and more proportional */
.review-form select[name="service"] {
    font-size: 14px !important;
    padding: 10px 35px 10px 12px !important;
    height: 44px !important;
    line-height: 1.2 !important;
}

/* Style the dropdown options to be smaller */
.review-form select[name="service"] option {
    font-size: 14px !important;
    padding: 8px 12px !important;
    line-height: 1.3 !important;
    background: #fff !important;
    color: #333 !important;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .review-form select[name="service"] {
        font-size: 13px !important;
        padding: 8px 30px 8px 10px !important;
        height: 40px !important;
        max-height: 40px !important;
    }
    
    .review-form select[name="service"] option {
        font-size: 13px !important;
        padding: 6px 10px !important;
        max-height: 35px !important;
    }
}

/* Fix for iOS Safari dropdown sizing */
@supports (-webkit-touch-callout: none) {
    .review-form select[name="service"] {
        -webkit-appearance: none !important;
        background-size: 16px 12px !important;
        background-position: right 12px center !important;
    }
}

/* Ensure dropdown arrow is properly sized */
.review-form select[name="service"]::-ms-expand {
    display: none;
}

/* Custom dropdown arrow sizing */
.review-form .form-group select::after {
    font-size: 12px !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}



    
   

/* ===== NUCLEAR WHITE TEXT FIX ===== */

@media (max-width: 768px) {
    /* COMPLETE OVERRIDE - EVERY POSSIBLE SELECTOR */
    
    .dropdown-content,
    .dropdown-nav .dropdown-content,
    nav .dropdown-content,
    header .dropdown-content {
        background: #000000 !important;
        color: #ffffff !important;
    }
    
    /* TARGET EVERY POSSIBLE TEXT ELEMENT */
    .dropdown-content a,
    .dropdown-content span,
    .dropdown-content div,
    .dropdown-content strong,
    .dropdown-content small,
    .dropdown-content p,
    .dropdown-nav .dropdown-content a,
    .dropdown-nav .dropdown-content span,
    .dropdown-nav .dropdown-content div,
    .dropdown-nav .dropdown-content strong,
    .dropdown-nav .dropdown-content small,
    nav .dropdown-content a,
    nav .dropdown-content span,
    nav .dropdown-content div,
    nav .dropdown-content strong,
    nav .dropdown-content small {
        color: #ffffff !important;
        background: transparent !important;
        text-shadow: none !important;
    }
    
    /* HOVER STATES */
    .dropdown-content a:hover,
    .dropdown-content a:hover *,
    .dropdown-nav .dropdown-content a:hover,
    .dropdown-nav .dropdown-content a:hover * {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* SPECIFIC TO YOUR LINKS */
    .dropdown-content a[href*="calculator"],
    .dropdown-content a[href*="tax-news"],
    .dropdown-content a[href*="calculator"] *,
    .dropdown-content a[href*="tax-news"] * {
        color: #ffffff !important;
    }
    
    /* FORCE WHITE ON ALL NESTED ELEMENTS */
    .dropdown-content * {
        color: inherit !important;
    }
    
    .dropdown-content {
        color: #ffffff !important;
    }
    
    /* BORDERS WHITE TOO */
    .dropdown-content a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
}





    
    /* TARGET ALL POSSIBLE CALCULATOR LINKS */
    .dropdown-nav:first-child .dropdown-content a,
    .dropdown-nav:first-child .dropdown-content a *,
    .dropdown-nav:first-child .dropdown-content strong,
    .dropdown-nav:first-child .dropdown-content small,
    .dropdown-nav:first-child .dropdown-content span,
    .dropdown-nav:first-child .dropdown-content div,
    .dropdown-content a[href*="calculator"] *,
    .dropdown-content a[href*="calc"] *,
    .dropdown-content a[href*="υπολογιστ"] *,
    a[href*="income-tax-calculator"] *,
    a[href*="vat-calculator"] *,
    a[href*="social-security-calculator"] * {
        color: #ffffff !important;
        text-shadow: none !important;
        background: transparent !important;
    }
  
    
    /* SPECIFIC CALCULATOR TITLES */
    .dropdown-content a strong:contains("Υπολογιστής"),
    .dropdown-content a strong:contains("Calculator"),
    .dropdown-content a[title*="calculator"] *,
    .dropdown-content a[title*="υπολογιστ"] * {
        color: #ffffff !important;
    }
    
   


/* ===== COOKIES BANNER STYLING ===== */

.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
    border-top: 3px solid #007bff;
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    position: relative;
}

.cookies-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s ease;
}

.cookies-close:hover {
    color: white;
}

.cookies-banner h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.cookies-banner p {
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-size: 14px;
    color: #ddd;
}

.cookies-link {
    color: #007bff;
    text-decoration: underline;
}

.cookies-link:hover {
    color: #0056b3;
}

/* Cookie Options */
.cookies-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.cookie-category {
    display: flex;
    align-items: center;
}

.cookie-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #ddd;
}

.cookie-checkbox input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #007bff;
}

.cookie-checkbox input[type="checkbox"]:disabled {
    opacity: 0.6;
}

/* Settings Button */
.cookies-settings {
    margin: 20px 0;
    text-align: center;
}

.cookies-settings-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
}

.cookies-settings-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Action Buttons */
.cookies-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.cookies-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.cookies-accept-all {
    background: #007bff;
    color: white;
}

.cookies-accept-all:hover {
    background: #0056b3;
}

.cookies-reject-all {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookies-reject-all:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookies-content {
        padding: 20px 15px;
    }
    
    .cookies-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cookies-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookies-btn {
        width: 100%;
    }
    
    .cookies-banner h3 {
        font-size: 16px;
        margin-right: 30px;
    }
    
    .cookies-banner p {
        font-size: 13px;
    }
}


/* ===== MOBILE STATS SECTION FIX ===== */
@media (max-width: 768px) {
    .stats {
        padding: 40px 0 !important; /* Μικρότερο padding */
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 στη γραμμή αντί για 4 */
        gap: 1rem !important; /* Μικρότερο gap */
        padding: 0 15px !important; /* Περισσότερα margins */
    }
    
    .stat-item {
        padding: 1rem !important; /* Μικρότερο padding */
        border-radius: 12px !important;
        max-width: 100% !important;
        margin: 0 5px !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important; /* Μικρότεροι αριθμοί */
        margin-bottom: 0.3rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important; /* Μικρότερο κείμενο */
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr !important; /* 1 στη γραμμή για πολύ μικρές οθόνες */
        gap: 0.8rem !important;
    }
    
    .stat-item {
        padding: 0.8rem !important;
        margin: 0 10px !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
}



/* ===== MOBILE SERVICES CARDS - ΣΤΕΝΟΤΕΡΑ & ΜΙΚΡΟΤΕΡΑ ===== */
@media (max-width: 768px) {
    .services {
        padding: 80px 0 !important; /* Μικρότερο padding */
    }
    
    .services-grid {
        grid-template-columns: 1fr !important; /* Ένα card ανά γραμμή */
        gap: 1.2rem !important; /* Μικρότερο gap */
        padding: 0 20px !important; /* Περισσότερα margins */
    }
    
    .service-card {
        padding: 1.5rem 1.2rem !important; /* Πιο στενό padding */
        margin: 0 !important;
        max-width: calc(100vw - 50px) !important; /* Πιο στενό */
        border-radius: 15px !important; /* Μικρότερο radius */
    }
    
    .service-icon {
        font-size: 2.5rem !important; /* Μικρότερα icons */
        height: 80px !important;
        margin-bottom: 1rem !important;
    }
    
    .service-icon::after {
        width: 80px !important;
        height: 80px !important;
    }
    
    .service-image {
        width: 50px !important;
        height: 50px !important;
        border-radius: 10px !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important; /* Μικρότεροι τίτλοι */
        margin-bottom: 0.8rem !important;
        line-height: 1.3 !important;
    }
    
    .service-card p {
        font-size: 0.85rem !important; /* Μικρότερο κείμενο */
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }
    
    /* Partner mini cards πιο μικρά */
    .partner-mini-card {
        padding: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .rbs-mini-logo {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.7rem !important;
    }
    
    .mini-partner-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .services-grid {
        padding: 0 15px !important; /* Ακόμα πιο στενό */
    }
    
    .service-card {
        padding: 1.2rem 1rem !important; /* Πολύ στενό */
        max-width: calc(100vw - 40px) !important;
    }
    
    .service-card h3 {
        font-size: 1.1rem !important;
    }
    
    .service-card p {
        font-size: 0.8rem !important;
    }
    
    .service-icon {
        font-size: 2.2rem !important;
        height: 70px !important;
    }
    
    .service-image {
        width: 45px !important;
        height: 45px !important;
    }
}




/* ===== MOBILE BLOG SECTION - ΣΤΕΝΟΤΕΡΑ CARDS ===== */
@media (max-width: 768px) {
    .blog {
        padding: 80px 0 !important; /* Μικρότερο padding */
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important; /* Ένα card ανά γραμμή */
        gap: 1.2rem !important; /* Μικρότερο gap */
        padding: 0 20px !important; /* Περισσότερα margins */
    }
    
    .blog-card {
        padding: 0 !important; /* Χωρίς padding */
        margin: 0 !important;
        max-width: calc(100vw - 50px) !important; /* Πιο στενό */
        border-radius: 15px !important; /* Μικρότερο radius */
        overflow: hidden !important;
    }
    
    .blog-image {
        height: 160px !important; /* Μικρότερη εικόνα */
    }
    
    .blog-content {
        padding: 1.2rem !important; /* Μικρότερο padding */
    }
    
    .blog-meta {
        gap: 0.8rem !important;
        margin-bottom: 0.8rem !important;
        font-size: 0.8rem !important; /* Μικρότερα meta */
    }
    
    .blog-category {
        padding: 3px 8px !important; /* Μικρότερο category badge */
        font-size: 0.7rem !important;
        top: 10px !important;
        left: 10px !important;
    }
    
    .blog-card h3 {
        font-size: 1.2rem !important; /* Μικρότεροι τίτλοι */
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .blog-card p {
        font-size: 0.85rem !important; /* Μικρότερο κείμενο */
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
        -webkit-line-clamp: 2 !important; /* Μόνο 2 γραμμές */
    }
    
    .blog-read-more {
        padding: 6px 12px !important; /* Μικρότερο button */
        font-size: 0.8rem !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        padding: 0 15px !important; /* Ακόμα πιο στενό */
        gap: 1rem !important;
    }
    
    .blog-card {
        max-width: calc(100vw - 40px) !important;
    }
    
    .blog-content {
        padding: 1rem !important; /* Πολύ μικρό padding */
    }
    
    .blog-image {
        height: 140px !important; /* Ακόμα μικρότερη εικόνα */
    }
    
    .blog-card h3 {
        font-size: 1.1rem !important;
    }
    
    .blog-card p {
        font-size: 0.8rem !important;
    }
    
    .blog-meta {
        font-size: 0.75rem !important;
    }
}

/* Newsletter form επίσης πιο στενό */
@media (max-width: 768px) {
    .blog-cta {
        padding: 2rem 1.5rem !important;
        margin: 2rem 20px 0 !important;
        border-radius: 15px !important;
    }
    
    .newsletter-form {
        max-width: 100% !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .newsletter-input,
    .newsletter-btn {
        width: 100% !important;
        padding: 12px 16px !important;
    }
}



/* ===== MOBILE NEWSLETTER & TESTIMONIALS - ΣΤΕΝΟΤΕΡΑ ===== */
@media (max-width: 768px) {
    /* Newsletter Section */
    .blog-cta {
        padding: 2rem 1.2rem !important; /* Πιο στενό padding */
        margin: 2rem 20px 0 !important; /* Περισσότερα margins */
        border-radius: 15px !important;
        max-width: calc(100vw - 50px) !important; /* Πιο στενό */
    }
    
    .blog-cta h3 {
        font-size: 1.5rem !important; /* Μικρότερος τίτλος */
        margin-bottom: 0.8rem !important;
    }
    
    .blog-cta p {
        font-size: 1rem !important; /* Μικρότερο κείμενο */
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
    }
    
    .newsletter-form {
        max-width: 100% !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .newsletter-input {
        padding: 12px 16px !important; /* Μικρότερο padding */
        font-size: 1rem !important;
        border-radius: 25px !important;
    }
    
    .newsletter-btn {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        border-radius: 25px !important;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 80px 0 !important; /* Μικρότερο padding */
    }
    
    .testimonial-card {
        padding: 1.5rem !important; /* Πιο στενό padding */
        margin: 0 20px 2rem !important; /* Περισσότερα margins */
        max-width: calc(100vw - 50px) !important; /* Πιο στενό */
        border-radius: 15px !important;
    }
    
    .testimonial-text {
        font-size: 1rem !important; /* Μικρότερο κείμενο */
        line-height: 1.5 !important;
        margin-bottom: 1.2rem !important;
    }
    
    .testimonial-author {
        font-size: 0.9rem !important; /* Μικρότερο όνομα */
    }
    
    .testimonial-stars {
        font-size: 1.2rem !important; /* Μικρότερα αστέρια */
        margin-bottom: 0.8rem !important;
    }
    
    .testimonial-date {
        font-size: 0.8rem !important; /* Μικρότερη ημερομηνία */
    }
    
    /* Review Form Section */
    .review-form-section {
        padding: 2rem 1.2rem !important; /* Πιο στενό */
        margin: 2rem 20px 0 !important; /* Περισσότερα margins */
        max-width: calc(100vw - 50px) !important;
        border-radius: 15px !important;
    }
    
    .review-form-header h3 {
        font-size: 1.5rem !important; /* Μικρότερος τίτλος */
        margin-bottom: 0.6rem !important;
    }
    
    .review-form-header p {
        font-size: 1rem !important; /* Μικρότερο κείμενο */
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr !important; /* Ένα field ανά γραμμή */
        gap: 1rem !important;
    }
    
    .review-form input,
    .review-form select,
    .review-form textarea {
        padding: 12px 16px !important; /* Μικρότερο padding */
        font-size: 1rem !important;
        border-radius: 10px !important;
    }
    
    .submit-review-btn {
        padding: 15px 30px !important; /* Μικρότερο button */
        font-size: 1rem !important;
        border-radius: 25px !important;
    }
}

@media (max-width: 480px) {
    /* Ακόμα πιο στενά για πολύ μικρές οθόνες */
    .blog-cta,
    .testimonial-card,
    .review-form-section {
        margin: 1.5rem 15px 0 !important;
        max-width: calc(100vw - 40px) !important;
        padding: 1.2rem 1rem !important;
    }
    
    .blog-cta h3 {
        font-size: 1.3rem !important;
    }
    
    .testimonial-text {
        font-size: 0.9rem !important;
    }
    
    .review-form-header h3 {
        font-size: 1.3rem !important;
    }
}

/* ===== MOBILE ABOUT SECTION - ΣΤΕΝΟΤΕΡΟ ===== */
@media (max-width: 768px) {
    .about {
        padding: 80px 0 !important; /* Μικρότερο padding */
    }
    
    .about-content {
        grid-template-columns: 1fr !important; /* Μία στήλη */
        gap: 2rem !important;
        padding: 0 20px !important; /* Περισσότερα margins */
    }
    
    .about-text {
        max-width: calc(100vw - 50px) !important; /* Πιο στενό */
    }
    
    .about-text h2 {
        font-size: 2.2rem !important; /* Μικρότερος τίτλος */
        margin-bottom: 1.5rem !important;
    }
    
    .about-text h2::after {
        width: 40px !important; /* Μικρότερη γραμμή */
        height: 3px !important;
    }
    
    .about-text p {
        font-size: 1rem !important; /* Μικρότερο κείμενο */
        margin-bottom: 1.2rem !important;
        line-height: 1.6 !important;
    }
    
    .about-features {
        margin-top: 1.5rem !important;
    }
    
    .about-features li {
        padding: 0.6rem 0 !important; /* Μικρότερο padding */
        font-size: 1rem !important; /* Μικρότερο κείμενο */
    }
    
    .about-features i {
        font-size: 1.1rem !important; /* Μικρότερα icons */
        margin-right: 0.8rem !important;
    }
    
    /* About Image Section */
    .about-image {
        padding: 0 20px !important;
        max-width: calc(100vw - 50px) !important;
    }
    
    .about-image-main.compact {
        height: 200px !important; /* Μικρότερη εικόνα */
        margin: 0 !important;
        border-radius: 15px !important;
    }
    
    .about-video {
        height: 180px !important; /* Μικρότερο video */
        border-radius: 15px !important;
    }
    
    .floating-stats {
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-top: 10px !important;
    }
    
    .floating-stat {
        padding: 1rem !important; /* Μικρότερο padding */
        border-radius: 12px !important;
        gap: 0.6rem !important;
    }
    
    .floating-stat i {
        font-size: 1.3rem !important; /* Μικρότερα icons */
    }
    
    .floating-stat span {
        font-size: 0.8rem !important; /* Μικρότερο κείμενο */
        line-height: 1.2 !important;
    }
    
    /* Video info overlay */
    .video-info {
        padding: 1rem !important;
    }
    
    .video-info i {
        font-size: 2rem !important;
    }
    
    .video-info h4 {
        font-size: 1.1rem !important;
    }
    
    .video-info p {
        font-size: 0.85rem !important;
    }
    
    /* Team showcase adjustments */
    .team-image-container {
        height: 250px !important;
        border-radius: 15px !important;
        margin: 0 20px !important;
    }
    
    .stat-badge {
        padding: 1.2rem 1.5rem !important;
        width: auto !important;
        max-width: calc(100vw - 80px) !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-text {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 0 15px !important;
    }
    
    .about-text {
        max-width: calc(100vw - 40px) !important;
    }
    
    .about-text h2 {
        font-size: 1.8rem !important;
    }
    
    .about-text p {
        font-size: 0.9rem !important;
    }
    
    .about-features li {
        font-size: 0.9rem !important;
    }
    
    .about-image {
        padding: 0 15px !important;
        max-width: calc(100vw - 40px) !important;
    }
    
    .about-image-main.compact {
        height: 180px !important;
    }
    
    .about-video {
        height: 160px !important;
    }
    
    .floating-stat {
        padding: 0.8rem !important;
    }
    
    .floating-stat span {
        font-size: 0.75rem !important;
    }
    
    .team-image-container {
        margin: 0 15px !important;
        height: 220px !important;
    }
}


/* ===== MOBILE DOWNLOADS & PAYMENTS - ΣΤΕΝΟΤΕΡΑ ===== */
@media (max-width: 768px) {
    /* Downloads Section */
    .downloads {
        padding: 60px 0 !important; /* Μικρότερο padding */
    }
    
    .downloads-center-info {
        margin: 2rem 20px 3rem !important; /* Περισσότερα margins */
    }
    
    .downloads-center-card {
        padding: 1.5rem !important; /* Πιο στενό padding */
        max-width: calc(100vw - 50px) !important; /* Πιο στενό */
        border-radius: 15px !important;
    }
    
    .downloads-center-header h3 {
        font-size: 1.4rem !important; /* Μικρότερος τίτλος */
        margin-bottom: 0.6rem !important;
    }
    
    .downloads-center-card p {
        font-size: 0.95rem !important; /* Μικρότερο κείμενο */
        margin-bottom: 1.5rem !important;
    }
    
    .downloads-stats {
        gap: 1rem !important;
    }
    
    .download-stat {
        padding: 0.8rem 1rem !important; /* Μικρότερο padding */
        border-radius: 10px !important;
    }
    
    .download-stat span {
        font-size: 0.8rem !important; /* Μικρότερο κείμενο */
    }
    
    /* Downloads Grid */
    .downloads-grid {
        grid-template-columns: 1fr !important; /* Ένα card ανά γραμμή */
        gap: 1.2rem !important;
        padding: 0 20px !important;
    }
    
    .download-card {
        padding: 1.2rem !important; /* Πιο στενό padding */
        min-height: auto !important;
        max-width: calc(100vw - 50px) !important;
        border-radius: 15px !important;
    }
    
    .download-header {
        gap: 1rem !important;
        flex-direction: row !important; /* Παραμένει horizontal */
        text-align: left !important;
    }
    
    .download-icon {
        width: 50px !important; /* Μικρότερο icon */
        height: 50px !important;
        font-size: 1.4rem !important;
        border-radius: 10px !important;
    }
    
    .download-info h3 {
        font-size: 1.1rem !important; /* Μικρότερος τίτλος */
        margin-bottom: 0.3rem !important;
    }
    
    .file-type {
        padding: 0.2rem 0.6rem !important; /* Μικρότερο badge */
        font-size: 0.7rem !important;
    }
    
    .download-content p {
        font-size: 0.8rem !important; /* Μικρότερο κείμενο */
        line-height: 1.4 !important;
    }
    
    .file-details {
        padding: 0.8rem !important; /* Μικρότερο padding */
        border-radius: 8px !important;
    }
    
    .file-detail-row {
        padding: 0.3rem 0 !important;
    }
    
    .file-detail-label,
    .file-detail-value {
        font-size: 0.8rem !important; /* Μικρότερο κείμενο */
    }
    
    .download-buttons {
        gap: 0.8rem !important;
        flex-direction: column !important;
    }
    
    .download-btn {
        padding: 8px 16px !important; /* Μικρότερα buttons */
        font-size: 0.8rem !important;
        min-width: auto !important;
        border-radius: 15px !important;
    }
    
    .download-counter {
        font-size: 0.7rem !important; /* Μικρότερο counter */
        padding: 0.2rem 0.6rem !important;
    }
    
    /* Category Headers */
    .category-header {
        margin-bottom: 2rem !important;
        padding: 0 20px !important;
    }
    
    .category-title {
        font-size: 1.6rem !important; /* Μικρότερος τίτλος */
        gap: 0.8rem !important;
    }
    
    .category-description {
        font-size: 0.95rem !important; /* Μικρότερο κείμενο */
    }
    
    /* Quick Links */
    .quick-links {
        margin-top: 3rem !important;
        padding: 2rem 1.2rem !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
        max-width: calc(100vw - 50px) !important;
        border-radius: 15px !important;
    }
    
    .quick-links h3 {
        font-size: 1.4rem !important; /* Μικρότερος τίτλος */
        margin-bottom: 0.8rem !important;
    }
    
    .quick-links p {
        font-size: 0.95rem !important; /* Μικρότερο κείμενο */
        margin-bottom: 1.5rem !important;
    }
    
    .links-grid {
        grid-template-columns: 1fr !important; /* Ένας σύνδεσμος ανά γραμμή */
        gap: 1rem !important;
    }
    
    .quick-link {
        padding: 0.8rem 1rem !important; /* Μικρότερο padding */
        border-radius: 12px !important;
        gap: 0.8rem !important;
    }
    
    .quick-link i {
        font-size: 1.2rem !important; /* Μικρότερα icons */
    }
    
    .quick-link-title {
        font-size: 0.9rem !important; /* Μικρότερος τίτλος */
    }
    
    .quick-link-desc {
        font-size: 0.75rem !important; /* Μικρότερη περιγραφή */
    }
    
    /* Payments Section */
    .payments {
        padding: 60px 0 !important; /* Μικρότερο padding */
    }
    
    .payment-methods {
        grid-template-columns: 1fr !important; /* Μία μέθοδος ανά γραμμή */
        gap: 1.5rem !important;
        padding: 0 20px !important;
    }
    
    .payment-card {
        padding: 1.5rem !important; /* Πιο στενό padding */
        max-width: calc(100vw - 50px) !important;
        border-radius: 15px !important;
    }
    
    .payment-header {
        gap: 1rem !important;
        flex-direction: row !important; /* Παραμένει horizontal */
        text-align: left !important;
    }
    
    .payment-icon {
        width: 50px !important; /* Μικρότερο icon */
        height: 50px !important;
        border-radius: 12px !important;
    }
    
    .payment-header h3 {
        font-size: 1.3rem !important; /* Μικρότερος τίτλος */
    }
    
    .payment-info {
        margin-bottom: 1.5rem !important;
    }
    
    .info-row {
        padding: 1rem 0 !important; /* Μικρότερο padding */
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.4rem !important;
    }
    
    .info-label {
        font-size: 0.9rem !important; /* Μικρότερο κείμενο */
        margin-bottom: 0.2rem !important;
    }
    
    .info-value {
        font-size: 0.8rem !important; /* Μικρότερο κείμενο */
        padding: 0.5rem 0.6rem !important;
        border-radius: 8px !important;
        min-width: auto !important;
        word-break: break-all !important;
    }
    
    .copy-btn {
        padding: 8px 16px !important; /* Μικρότερο button */
        font-size: 0.8rem !important;
        border-radius: 20px !important;
    }
    
    /* Credit Card Form */
    .form-row {
        grid-template-columns: 1fr !important; /* Ένα field ανά γραμμή */
        gap: 1rem !important;
    }
    
    .card-input {
        padding: 12px 16px !important; /* Μικρότερο padding */
        font-size: 1rem !important;
        border-radius: 10px !important;
    }
    
    .payment-btn,
    .paypal-btn {
        padding: 12px 20px !important; /* Μικρότερα buttons */
        font-size: 1rem !important;
        border-radius: 20px !important;
    }
    
    /* PayPal Benefits */
    .paypal-benefits {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .benefit-item {
        font-size: 0.8rem !important; /* Μικρότερο κείμενο */
    }
    
    .benefit-item i {
        font-size: 1.2rem !important; /* Μικρότερα icons */
    }
    
    /* Security Notice */
    .security-notice {
        margin-top: 3rem !important;
        padding: 1.5rem !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
        max-width: calc(100vw - 50px) !important;
        border-radius: 15px !important;
    }
    
    .security-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .security-icon {
        width: 50px !important; /* Μικρότερο icon */
        height: 50px !important;
    }
    
    .security-text h4 {
        font-size: 1.2rem !important; /* Μικρότερος τίτλος */
    }
    
    .security-text p {
        font-size: 0.9rem !important; /* Μικρότερο κείμενο */
    }
}

@media (max-width: 480px) {
    /* Ακόμα πιο στενά για πολύ μικρές οθόνες */
    .downloads-center-card,
    .download-card,
    .payment-card,
    .quick-links,
    .security-notice {
        margin-left: 15px !important;
        margin-right: 15px !important;
        max-width: calc(100vw - 40px) !important;
        padding: 1rem !important;
    }
    
    .downloads-grid,
    .payment-methods {
        padding: 0 15px !important;
    }
    
    .category-header {
        padding: 0 15px !important;
    }
    
    .category-title {
        font-size: 1.4rem !important;
    }
    
    .download-info h3 {
        font-size: 1rem !important;
    }
    
    .payment-header h3 {
        font-size: 1.1rem !important;
    }
}



/* ===== MOBILE HAMBURGER MENU - ΧΩΡΙΣ ΜΕΓΑΛΑ ΚΕΝΑ ===== */
@media (max-width: 768px) {
    /* Το κυρίως navigation menu */
    .nav-links {
        max-height: calc(100vh - 150px) !important;
        overflow-y: auto !important;
        padding-bottom: 60px !important; /* Μικρότερο padding */
        margin-bottom: 10px !important; /* Μικρότερο margin */
        padding-top: 10px !important;
    }
    
    /* Μικρότερα gaps μεταξύ των menu items */
    .nav-links li {
        margin-bottom: 5px !important; /* Πολύ μικρό κενό μεταξύ τους */
    }
    
    /* Τα τελευταία 2 items - μόνο λίγο extra χώρο */
    .nav-links li:nth-last-child(1),
    .nav-links li:nth-last-child(2) {
        margin-bottom: 15px !important; /* Μόνο 15px extra αντί για 40px */
    }
    
    /* Τα menu links πιο compact */
    .nav-links a {
        padding: 12px 20px !important; /* Μικρότερο padding */
        margin-bottom: 2px !important; /* Πολύ μικρό margin */
        display: block !important;
        border-radius: 8px !important;
        line-height: 1.2 !important; /* Πιο στενές γραμμές */
    }
    
    /* Smooth scrolling */
    .nav-links {
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Dropdown content πιο compact */
    .dropdown-content {
        position: static !important;
        max-height: none !important;
        box-shadow: none !important;
        background: rgba(255,255,255,0.1) !important;
        margin-top: 2px !important; /* Μικρότερο margin */
        margin-bottom: 5px !important; /* Μικρότερο margin */
        padding: 5px 0 !important; /* Μικρότερο padding */
    }
    
    /* Dropdown links πιο compact */
    .dropdown-content a {
        padding: 8px 16px !important; /* Μικρότερο padding */
        margin-bottom: 1px !important; /* Ελάχιστο margin */
    }
}

/* Extra compact για πολύ μικρές οθόνες */
@media (max-width: 480px) {
    .nav-links {
        padding-bottom: 40px !important; /* Ακόμα μικρότερο */
    }
    
    .nav-links li {
        margin-bottom: 3px !important; /* Ακόμα μικρότερο κενό */
    }
    
    .nav-links li:nth-last-child(1),
    .nav-links li:nth-last-child(2) {
        margin-bottom: 10px !important; /* Ελάχιστο extra χώρο */
    }
    
    .nav-links a {
        padding: 10px 16px !important; /* Ακόμα πιο compact */
        margin-bottom: 1px !important;
    }
}


/* ===== MOBILE PAYMENT CARDS - EXTRA COMPACT ===== */
@media (max-width: 768px) {
    /* Payment Cards ακόμα πιο μικρές */
    .payment-card {
        padding: 1rem !important; /* Πολύ μικρό padding */
        margin-bottom: 1rem !important;
        max-width: calc(100vw - 60px) !important; /* Ακόμα πιο στενό */
        border-radius: 12px !important;
    }
    
    /* Payment Header πιο compact */
    .payment-header {
        gap: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .payment-icon {
        width: 40px !important; /* Ακόμα μικρότερο icon */
        height: 40px !important;
        border-radius: 8px !important;
        font-size: 1.2rem !important;
    }
    
    .payment-header h3 {
        font-size: 1.1rem !important; /* Μικρότερος τίτλος */
        margin: 0 !important;
        line-height: 1.2 !important;
    }
    
    /* Payment Description πιο μικρό */
    .payment-card > p {
        font-size: 0.8rem !important; /* Πολύ μικρό κείμενο */
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        color: #666 !important;
    }
    
    /* Payment Benefits/Features πιο compact */
    .payment-info,
    .paypal-description,
    .card-coming-soon {
        margin-bottom: 1rem !important;
        padding: 0.8rem !important;
        border-radius: 8px !important;
    }
    
    /* Bank Info Rows πιο μικρές */
    .bank-row,
    .info-row {
        padding: 0.5rem 0 !important;
        gap: 0.3rem !important;
    }
    
    .bank-label,
    .info-label {
        font-size: 0.75rem !important; /* Πολύ μικρό κείμενο */
        font-weight: 500 !important;
    }
    
    .bank-value,
    .info-value {
        font-size: 0.7rem !important; /* Πολύ μικρό κείμενο */
        padding: 0.4rem 0.5rem !important;
        border-radius: 6px !important;
        line-height: 1.2 !important;
    }
    
    /* Payment Buttons πιο μικρά */
    .copy-btn,
    .payment-btn,
    .paypal-btn {
        padding: 8px 12px !important; /* Μικρότερα buttons */
        font-size: 0.75rem !important;
        border-radius: 15px !important;
        margin-top: 0.5rem !important;
    }
    
    /* PayPal Benefits πιο compact */
    .paypal-benefits {
        gap: 0.5rem !important;
        margin-top: 0.8rem !important;
    }
    
    .benefit-item {
        font-size: 0.7rem !important; /* Πολύ μικρό κείμενο */
        gap: 0.3rem !important;
    }
    
    .benefit-item i {
        font-size: 1rem !important; /* Μικρότερα icons */
    }
    
    /* Payment Method Badges πιο μικρά */
    .payment-method-badge {
        padding: 2px 6px !important;
        font-size: 0.6rem !important;
        border-radius: 8px !important;
    }
    
    /* Credit Card Form πιο compact */
    .credit-card-form .form-group {
        margin-bottom: 1rem !important;
    }
    
    .credit-card-form label {
        margin-bottom: 0.4rem !important;
        font-size: 0.8rem !important;
    }
    
    .card-input {
        padding: 8px 12px !important; /* Μικρότερα inputs */
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    
    /* Useful Info Section πιο μικρό */
    .security-notice {
        margin-top: 2rem !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        max-width: calc(100vw - 60px) !important;
    }
    
    .security-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .security-text h4 {
        font-size: 1rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .security-text p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
    
    /* Payment Section Title πιο μικρό */
    .payments .section-title {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .payments .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 480px) {
    /* Ακόμα πιο μικρά για πολύ μικρές οθόνες */
    .payment-card {
        padding: 0.8rem !important;
        max-width: calc(100vw - 50px) !important;
        margin-bottom: 0.8rem !important;
    }
    
    .payment-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .payment-header h3 {
        font-size: 1rem !important;
    }
    
    .payment-card > p {
        font-size: 0.75rem !important;
    }
    
    .bank-label,
    .info-label {
        font-size: 0.7rem !important;
    }
    
    .bank-value,
    .info-value {
        font-size: 0.65rem !important;
    }
    
    .copy-btn,
    .payment-btn,
    .paypal-btn {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }
    
    .benefit-item {
        font-size: 0.65rem !important;
    }
}


/* ===== MOBILE DROPDOWN FUNCTIONALITY RESTORATION ===== */
@media (max-width: 768px) {
    .dropdown-nav {
        position: relative !important;
        margin: 8px 0 !important;
        width: 100% !important;
    }

    .dropdown-nav .dropbtn {
        background: rgba(255, 255, 255, 0.15) !important;
        border-radius: 10px !important;
        transition: all 0.2s ease !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #fff !important;
        font-weight: 500 !important;
        font-size: 15px !important;
        cursor: pointer !important;
        outline: none !important;
        width: 100% !important;
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 48px !important;
        padding: 14px 16px !important;
    }

    .dropdown-nav .dropbtn:hover {
        background: rgba(255, 255, 255, 0.25) !important;
    }

    .dropdown-content {
        position: static !important;
        display: none !important;
        background: rgba(0, 0, 0, 0.9) !important;
        border-radius: 8px !important;
        margin-top: 8px !important;
        padding: 8px 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .dropdown-nav:hover .dropdown-content {
        display: block !important;
    }

    .dropdown-content a {
        color: #ffffff !important;
        background: transparent !important;
        padding: 12px 16px !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        transition: all 0.3s ease !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        color: #ffd700 !important;
    }

    .dropdown-content a:last-child {
        border-bottom: none !important;
    }
}


/* ??? TAX OBLIGATIONS SYSTEM */
.tax-obligations-btn {
    position: absolute;
    top: 290px;
    left: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: taxPulse 2s ease-in-out infinite alternate;
}

.tax-obligations-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

@keyframes taxPulse {
    from { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); }
    to { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.3); }
}

/* Modal Overlay */
.tax-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.tax-modal-overlay.active {
    display: flex;
}

/* Modal Container */
.tax-modal {
    background: white;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Modal Header */
.tax-modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tax-modal-title {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tax-modal-controls {
    display: flex;
    gap: 10px;
}

.modal-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.close-btn:hover {
    background: #ef4444 !important;
}

/* Modal Content */
.tax-modal-content {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Month Selector */
.month-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.month-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    color: #495057;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.month-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.month-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Obligations Container */
.obligations-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e9ecef;
}

.month-title {
    text-align: center;
    color: #ff6b35;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.obligations-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.obligations-table th {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    text-align: left;
    font-size: 16px;
}

.obligations-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.obligations-table tr:last-child td {
    border-bottom: none;
}

.obligations-table tr:hover {
    background: #f8f9fa;
}

.date-cell {
    font-weight: 700;
    color: #ff6b35;
    white-space: nowrap;
    width: 150px;
}

.obligation-cell {
    line-height: 1.6;
}

.obligation-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.obligation-item:last-child {
    margin-bottom: 0;
}

.obligation-icon {
    font-size: 16px;
}

/* Admin Panel */
.admin-panel {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border: 2px dashed #dee2e6;
}

.admin-title {
    color: #6c757d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-btn:hover {
    background: #495057;
    transform: scale(1.05);
}

.admin-btn.edit {
    background: #0d6efd;
}

.admin-btn.edit:hover {
    background: #0b5ed7;
}

.admin-btn.save {
    background: #198754;
}

.admin-btn.save:hover {
    background: #157347;
}

.admin-btn.export {
    background: #fd7e14;
}

.admin-btn.export:hover {
    background: #ea6100;
}

/* Copy Notice */
.copy-notice {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid #abdde5;
    color: #0c5460;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tax-obligations-btn {
        top: 10px;
        left: 10px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .tax-modal {
        width: 100%;
        max-width: none;
        height: 100vh;
        border-radius: 0;
    }

    .tax-modal-content {
        padding: 20px;
        max-height: calc(100vh - 160px);
    }

    .month-selector {
        gap: 8px;
    }

    .month-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .obligations-table {
        font-size: 14px;
    }

    .obligations-table th,
    .obligations-table td {
        padding: 10px 12px;
    }
}


/* ?? SMART UPLOAD SYSTEM */

/* Smart Upload Zone */
.admin-upload-zone {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px dashed #6c757d;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.admin-upload-zone.dragover {
    border-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

.admin-upload-zone:hover {
    border-color: #495057;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.upload-icon {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.admin-upload-zone.dragover .upload-icon {
    color: #28a745;
    transform: scale(1.2);
}

.upload-text {
    color: #495057;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.upload-hint {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

/* Secret Admin Trigger */
.secret-admin-trigger {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 53, 0.3);  < ΝΕΟ: Ορατό background
    border: 2px solid #ff6b35;           < ΝΕΟ: Ορατό border  
    border-radius: 50%;                  < ΝΕΟ: Στρογγυλό
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;          < ΝΕΟ: Animation
}

.secret-admin-trigger:hover {
    background: rgba(255, 107, 53, 0.6);
    transform: scale(1.1);
}

.secret-admin-trigger::before {
    content: "??";
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Processing Animation */
.processing-animation {
    display: none;
    text-align: center;
    padding: 20px;
    color: #007bff;
}

.processing-animation.show {
    display: block;
}

.processing-animation i {
    font-size: 32px;
    animation: smartSpin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes smartSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smart Results */
.smart-success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #28a745;
    display: flex;
    align-items: center;
    gap: 10px;
}

.smart-error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 10px;
}

.smart-data-preview {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
}

.smart-preview-month {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.smart-preview-month h5 {
    color: #007bff;
    margin-bottom: 10px;
}

.smart-preview-obligation {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: white;
    margin: 5px 0;
    border-radius: 4px;
    border-left: 3px solid #28a745;
}

.smart-apply-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto;
}

.smart-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.smart-code-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
}

.smart-code-container h4 {
    color: #007bff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.smart-code-container pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 12px;
    line-height: 1.4;
}

.smart-copy-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.smart-copy-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}



.secret-admin-trigger::after {
    content: attr(data-clicks);
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secret-admin-trigger.clicked::after {
    opacity: 1;
}



/* ?? SECRET ADMIN BUTTON - PERMANENT FIX */
.admin-title {
    position: relative !important;
}

.secret-admin-trigger {
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
    background: rgba(255, 107, 53, 0.3) !important;
    border: 2px solid #ff6b35 !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.secret-admin-trigger:hover {
    background: rgba(255, 107, 53, 0.6) !important;
    transform: scale(1.1) !important;
}

.secret-admin-trigger:active {
    transform: scale(0.95) !important;
}



/* ?? EMAIL REMINDER SYSTEM */
.email-reminder-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 8px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.email-reminder-btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: scale(1.1);
}

.email-reminder-btn.active {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}


/* ?? SUBSCRIPTION MODAL */
.subscription-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 25000;
    animation: fadeIn 0.3s ease;
}

.subscription-modal.active {
    display: flex;
}

.subscription-modal-content {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 3px solid #ffd700;
}

.subscription-modal h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subscription-info p {
    margin: 15px 0;
    color: #333;
    font-size: 16px;
}

.pricing-box {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.pricing-box h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
}

.pricing-box li {
    margin: 8px 0;
    font-size: 14px;
}

.free-limit {
    background: #e3f2fd;
    padding: 10px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.subscription-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.sub-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-btn.cancel {
    background: #6c757d;
    color: white;
}

.sub-btn.premium {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #333;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.sub-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sub-btn.premium:hover {
    background: linear-gradient(135deg, #ffed4e, #ffc107);
} /* ? ΠΡΟΣΘΗΚΗ του κλεισίματος */





/* ?? YOUTUBE NAVIGATION BUTTON - ΙΔΙΟ ΧΡΩΜΑ ΜΕ PREMIUM (ΜΩΒ) */
.youtube-nav-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: 2px solid #667eea !important;
    animation: youtubeGlow 2s ease-in-out infinite alternate !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.youtube-nav-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #5a6fd8 100%) !important;
    transform: scale(1.05) !important;
    color: white !important;
    text-decoration: none !important;
}
.youtube-nav-link:visited {
    color: white !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.youtube-nav-link:focus {
    color: white !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    outline: none !important;
}
.youtube-nav-link i {
    font-size: 16px !important;
    color: white !important;
}

/* YouTube Glow Animation - Μωβ glow */
@keyframes youtubeGlow {
    from { 
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.5) !important; 
    }
    to { 
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.8), 0 0 30px rgba(102, 126, 234, 0.5) !important; 
    }
}

/* ?? EXTRA ΕΝΙΣΧΥΣΗ - Για κάθε περίπτωση */
nav ul li a.youtube-nav-link,
nav .nav-links a.youtube-nav-link,
header nav a.youtube-nav-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}
nav ul li a.youtube-nav-link:hover,
nav .nav-links a.youtube-nav-link:hover,
header nav a.youtube-nav-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #5a6fd8 100%) !important;
    color: white !important;
}

/* MOBILE RESPONSIVE - Ίδιο μωβ χρώμα */
@media (max-width: 768px) {
    .youtube-nav-link {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        border: 2px solid #667eea !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
    
    .youtube-nav-link:hover,
    .youtube-nav-link:active,
    .youtube-nav-link:focus {
        background: linear-gradient(135deg, #764ba2 0%, #5a6fd8 100%) !important;
        color: white !important;
    }
}

/* ABSOLUTE PRIORITY - Ίδιο μωβ χρώμα με Premium */
a[href="video.html"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}
a[href="video.html"]:hover {
    background: linear-gradient(135deg, #764ba2 0%, #5a6fd8 100%) !important;
    color: white !important;
}

/* ?? HEADER SPACING FIX - Μικρότερα κενά */
.nav-links {
    gap: 1.2rem !important;
}
.nav-links a {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.9rem !important;
}
.youtube-nav-link {
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
    gap: 6px !important;
}
.youtube-nav-link i {
    font-size: 14px !important;
}




/* Premium & Chatbot buttons πιο compact */
.premium-nav-link,
.chatbot-nav-link {
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
}

.premium-nav-link i,
.chatbot-nav-link i {
    font-size: 14px !important;
}

/* Mobile adjustment */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1rem !important;
    }
    
    .nav-links a {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.85rem !important;
    }
    
    .youtube-nav-link,
    .premium-nav-link,
    .chatbot-nav-link {
        padding: 5px 10px !important;
        font-size: 0.8rem !important;
    }
}


.logo-container {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.animated-logo {
    display: flex;
    align-items: center;
   
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    padding: 15px 20px;
    border-radius: 15px;
   
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
   
    border: 1px solid rgba(255, 255, 255, 0.1);

 
    max-width: 320px;
}

.animated-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
  
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.logo-icon {
    position: relative;
    margin-right: 15px;
}

.calculator-icon {
    width: 50px;
    height: 50px;
   
    background: linear-gradient(135deg, #1e3c72, #2a5298, #4c6ef5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
  
    box-shadow: 
        0 8px 25px rgba(30, 60, 114, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

.calculator-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    animation: rotateBorder 4s linear infinite;
    opacity: 0.8;
  
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

@keyframes rotateBorder {
    0% { 
        transform: translateX(-50%) rotate(0deg); 
        opacity: 0.8; 
    }
    50% { 
        opacity: 1; 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    100% { 
        transform: translateX(-50%) rotate(360deg); 
        opacity: 0.8; 
    }
}

.logo-letters {
    font-size: 20px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.4);
    animation: letterPulse 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

@keyframes letterPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(255, 215, 0, 0.3);
    }
}

.logo-text {
    position: relative;
    z-index: 2;
}

.animated-company-name {
    font-size: 22px;
    font-weight: 800;
  
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
  
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
   
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.animated-subtitle {
    font-size: 12px;
  
    color: #e0e7ff;
    margin: 2px 0 0 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.animated-professional-title {
    font-size: 10px;
  
    color: #cbd5e1;
    margin: 1px 0 0 0;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 15px;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffd700;
    border-radius: 50%;
    animation: floatParticle 6s infinite linear;
    opacity: 0;
 
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 1.5s; }
.particle:nth-child(3) { left: 60%; animation-delay: 3s; }
.particle:nth-child(4) { left: 80%; animation-delay: 4.5s; }

@keyframes floatParticle {
    0% { 
        transform: translateY(60px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(50px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    100% {
        transform: translateY(-20px) scale(0);
        opacity: 0;
    }
}


.logo-container:hover .animated-logo {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.logo-container:hover .calculator-icon {
    box-shadow: 
        0 12px 35px rgba(30, 60, 114, 0.5),
        0 0 0 3px rgba(255, 215, 0, 0.4);
}


/* ===== MOBILE TAX OBLIGATIONS BUTTON - ΠΑΝΩ ΑΠΟ BANNER ===== */

/* Desktop - παραμένει όπως είναι */
.tax-obligations-btn {
    position: absolute;
    top: 290px;
    left: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3) !important;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: taxPulse 2s ease-in-out infinite alternate;
}


.tax-obligations-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4) !important;
}



.tax-obligations-btn {
    position: absolute;
    top: 360px;
    left: -240px;
    /* ...όλα τα άλλα στυλ... */
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}



/* MOBILE - Νέα τοποθέτηση πάνω από banner */
@media (max-width: 768px) {
    .tax-obligations-btn {
        position: fixed !important; /* Fixed για να μένει πάντα ορατό */
        top: 225px !important; /* Κάτω από το header */
        left: 50% !important; /* Κεντραρισμένο */
        transform: translateX(-50%) !important; /* Τέλειο κεντράρισμα */
        background: rgba(255, 255, 255, 0.95) !important; /* Λευκό φόντο */
        color: #ff6b35 !important; /* Πορτοκαλί γράμματα */
        border: 2px solid #ff6b35 !important; /* Πορτοκαλί border */
        padding: 10px 16px !important; /* Μικρότερο padding */
        font-size: 14px !important; /* Μικρότερα γράμματα */
        font-weight: 600 !important; /* Λίγο πιο ελαφρύ */
        border-radius: 20px !important; /* Πιο στρογγυλό */
        backdrop-filter: blur(10px) !important; /* Glass effect */
        box-shadow: 
            0 4px 15px rgba(255, 107, 53, 0.3) !important,
            0 0 0 1px rgba(255, 255, 255, 0.5) inset !important; /* Λευκό inner border */
        z-index: 9999 !important; /* Πάνω από όλα */
        min-width: 200px !important; /* Ελάχιστο πλάτος */
        justify-content: center !important; /* Κεντραρισμένο κείμενο */
        text-align: center !important;
        animation: mobileTaxPulse 3s ease-in-out infinite alternate !important; /* Νέο animation */
    }
    
    /* Hover effect για mobile */
    .tax-obligations-btn:hover {
        background: #ff6b35 !important; /* Πορτοκαλί φόντο */
        color: white !important; /* Λευκά γράμματα */
        transform: translateX(-50%) translateY(-2px) scale(1.02) !important; /* Ελαφρύ lift */
        box-shadow: 
            0 8px 20px rgba(255, 107, 53, 0.4) !important,
            0 0 0 1px rgba(255, 255, 255, 0.3) inset !important;
    }
    
    /* Νέο animation για mobile */
    @keyframes mobileTaxPulse {
        from { 
            box-shadow: 
                0 4px 15px rgba(255, 107, 53, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
        }
        to { 
            box-shadow: 
                0 6px 20px rgba(255, 107, 53, 0.5),
                0 0 15px rgba(255, 107, 53, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.7) inset;
        }
    }
    
    /* Συμπατότητα με notice banner */
    .notice-banner ~ .tax-obligations-btn,
    body.has-notice-banner .tax-obligations-btn {
        top: 120px !important; /* Πιο κάτω αν υπάρχει notice banner */
    }
}

/* Extra small screens - ακόμα πιο compact */
@media (max-width: 480px) {
    .tax-obligations-btn {
        padding: 8px 12px !important; /* Ακόμα μικρότερο */
        font-size: 13px !important;
        min-width: 180px !important;
        gap: 6px !important;
    }
    
    .tax-obligations-btn i {
        font-size: 14px !important; /* Μικρότερο icon */
    }
}

/* Προσαρμογή για landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .tax-obligations-btn {
        top: 60px !important; /* Πιο ψηλά σε landscape */
        padding: 8px 14px !important;
        font-size: 13px !important;
    }
}

/* ===== TAX MODAL - ΣΤΕΝΟΤΕΡΟ ΓΙΑ MOBILE ===== */

@media (max-width: 768px) {
    .tax-modal {
        width: 140% !important;
        max-width: none !important;
        height: 95vh !important;
        max-height: 95vh !important;
        margin: 2.5vh auto !important;
        border-radius: 15px !important;
    }
    
    .tax-modal-content {
        padding: 15px !important;
        max-height: calc(95vh - 100px) !important;
        font-size: 14px !important;
    }
    
    .tax-modal-header {
        padding: 15px 20px !important;
    }
    
    .tax-modal-title {
        font-size: 18px !important;
    }
    
    .obligations-table {
        font-size: 12px !important;
    }
    
    .obligations-table th,
    .obligations-table td {
        padding: 8px 6px !important;
    }
    
    .month-btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
        margin: 2px !important;
    }
    
    .month-title {
        font-size: 20px !important;
    }
}




/* ===== MOBILE BANKING DETAILS MODAL - ΤΕΛΕΙΑ ΛΥΣΗ ===== */

@media (max-width: 768px) {
    .payment-details-content {
        width: calc(100vw - 15px) !important; /* Μόνο 15px margins */
        max-width: none !important; /* Χωρίς περιορισμό πλάτους */
        max-height: 85vh !important;
        border-radius: 10px !important;
        margin: 0 7.5px !important; /* Κεντραρισμένα margins */
    }
    
    /* Όλα τα κείμενα με word-wrap */
    .payment-details-body * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    /* Bank Details Rows - Vertical Layout */
    .bank-detail-row {
        flex-direction: column !important; /* Κάθετα αντί για οριζόντια */
        align-items: flex-start !important;
        padding: 8px 0 !important;
        gap: 4px !important;
    }
    
    .bank-detail-label {
        font-size: 11px !important;
        color: #666 !important;
        font-weight: 600 !important;
        width: 100% !important;
    }
    
    .bank-detail-value {
        font-size: 12px !important;
        color: #1e3c72 !important;
        font-weight: 600 !important;
        width: 100% !important;
        text-align: left !important; /* Αριστερά αντί για δεξιά */
        word-break: break-word !important;
        line-height: 1.4 !important;
    }
    
    /* IBAN special styling */
    .bank-detail-row:nth-child(2) .bank-detail-value {
        font-size: 10px !important;
        font-family: 'Courier New', monospace !important;
        background: rgba(255, 107, 53, 0.1) !important;
        padding: 6px !important;
        border-radius: 6px !important;
        letter-spacing: 0.5px !important;
    }
}

@media (max-width: 480px) {
    .payment-details-content {
        width: calc(100vw - 10px) !important; /* Ακόμα πιο πλατύ */
        margin: 0 5px !important;
    }
}



.animated-logo {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Circular rotating ring */
.rotating-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ff6b35 0deg,
        #ff8c69 72deg,
        #ffa500 144deg,
        #ffd700 216deg,
        #ff6b35 288deg,
        #ff6b35 360deg
    );
    animation: rotateRing 15s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-ring::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 20px rgba(102, 126, 234, 0.1);
}

/* Circular text path */
.circular-text {
    position: absolute;
    width: 75px;
    height: 75px;
    animation: rotateText 20s linear infinite;
}

.circular-text svg {
    width: 100%;
    height: 100%;
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 6px;
    fill: #2563eb;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}


.center-letters {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    font-size: 24px;
    font-weight: 900;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -1px;
    text-shadow: 
        0 1px 5px rgba(0,0,0,0.5),
        0 0 10px rgba(255,255,255,0.2);
    box-shadow: 
        0 5px 15px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    animation: pulse 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.center-letters::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent 30%, 
        rgba(255,255,255,0.3) 50%, 
        transparent 70%
    );
    animation: shine 4s ease-in-out infinite;
}


.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ff6b35;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 0 4px #ff6b35;
}

.particle:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 20%;
    animation-delay: 3s;
}


.animated-company-name {
    animation: textGlow 3s ease-in-out infinite alternate;
}

.animated-professional-title {
    animation: goldShimmer 2s ease-in-out infinite alternate;
}


@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes pulse {
    from { 
        transform: scale(1);
        box-shadow: 
            0 5px 15px rgba(37, 99, 235, 0.4),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
    to { 
        transform: scale(1.05);
        box-shadow: 
            0 8px 25px rgba(37, 99, 235, 0.6),
            inset 0 1px 0 rgba(255,255,255,0.5);
    }
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

@keyframes textGlow {
    from { 
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    to { 
        text-shadow: 
            0 2px 10px rgba(0,0,0,0.3),
            0 0 20px rgba(255,255,255,0.4);
    }
}

@keyframes goldShimmer {
    from { 
        color: #ffd700;
        text-shadow: 0 1px 3px rgba(255, 215, 0, 0.5);
    }
    to { 
        color: #ffed4e;
        text-shadow: 
            0 1px 3px rgba(255, 215, 0, 0.5),
            0 0 10px rgba(255, 237, 78, 0.6);
    }
}


.logo-container:hover .rotating-ring {
    animation-duration: 10s;
}

.logo-container:hover .circular-text {
    animation-duration: 15s;
}

.logo-container:hover .center-letters {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .animated-logo {
        width: 60px;
        height: 60px;
    }
    
    .rotating-ring {
        width: 60px;
        height: 60px;
    }
    
    .circular-text {
        width: 55px;
        height: 55px;
    }
    
    .circular-text svg {
        font-size: 5px;
    }
    
    .center-letters {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}


.header-left {
    margin-left: -130px !important; /* Τέρμα αριστερά */
    padding-left: 0 !important;
}

.logo-container {
    margin-left: -70px !important; /* Επιπλέον μετακίνηση */
    padding-left: 0 !important;
    gap: 15px; /* Μικρότερο gap μεταξύ logo και text */
}

.animated-logo {
    margin-left: -30px !important; /* Ακόμα πιο αριστερά */
}

/* Navigation adjustments */
nav {
    padding-left: 0.3rem !important; /* Μικρότερο padding */
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Μικρότερο gap μεταξύ των γραμμών */
    min-width: 0;
margin-left: -25px; /* ΠΡΟΣΘΗΚΗ ΑΥΤΗΣ ΤΗΣ ΓΡΑΜΜΗΣ */
}



.animated-subtitle {
    font-size: 16px !important; /* Μεγαλύτερο από πριν */
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0;
    font-weight: 700 !important; /* Πιο έντονο */
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.animated-professional-title {
    font-size: 11px !important; /* Μεγαλύτερο από πριν */
    color: #fff3a0 !important; 
    margin: 0;
    font-weight: 500 !important;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.6);
    animation: goldShimmer 2s ease-in-out infinite alternate;
    line-height: 1.2;
}

/* Mobile Responsive - Τέρμα Αριστερά */
@media (max-width: 768px) {
    .header-left {
        margin-left: -120px !important;
        margin-top: 10px !important;
    }
    
    .logo-container {
        margin-left: -60px !important;
        transform: scale(0.8) !important; /* Λίγο μικρότερο */
        gap: 12px;
    }
    
    .animated-logo {
        margin-left: -30px !important;
    }
    
    .animated-subtitle {
        font-size: 13px !important;
    }
    
    .animated-professional-title {
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .header-left {
        margin-left: -100px !important;
    }
    
    .logo-container {
        margin-left: -50px !important;
        transform: scale(0.7) !important; /* Ακόμα μικρότερο */
        gap: 10px;
    }
    
    .animated-logo {
        margin-left: -25px !important;
    }
    
    .animated-subtitle {
        font-size: 11px !important;
    }
    
    .animated-professional-title {
        font-size: 9px !important;
    }
}





#faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.faq-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.8);
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.faq-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.faq-card:hover .faq-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.faq-question-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

.faq-question-preview {
    color: #6c757d;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-enter-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq-enter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}


.faq-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.faq-overlay.active {
    opacity: 1;
    visibility: visible;
}

.faq-overlay-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    animation: slideInFromRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.overlay-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.overlay-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    margin: 0 20px;
}

.progress-indicator {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
}


.answer-container {
    flex: 1;
    padding: 50px 30px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.question-display {
    text-align: center;
    margin-bottom: 50px;
}

.question-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.question-title-large {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.answer-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.answer-content h4 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.answer-content h4::before {
    content: '▶';
    color: #28a745;
    font-size: 1rem;
}

.answer-content ul {
    padding-left: 25px;
    margin: 20px 0;
}

.answer-content li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
    position: relative;
}

.answer-content li::marker {
    color: #667eea;
    font-weight: bold;
}

.answer-content strong {
    color: #2c3e50;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #2196f3;
    padding: 25px;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.2);
}

.warning-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
    border-left: 5px solid #ff9800;
    padding: 25px;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}


.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
}

.faq-overlay.active .floating-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.action-btn.contact {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.action-btn.print {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.1);
}


@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .overlay-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .overlay-title {
        margin: 0;
    }

    .answer-container {
        padding: 30px 20px;
    }

    .question-title-large {
        font-size: 1.8rem;
    }

    .answer-content {
        padding: 25px;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
    }
}


/* ===== ENHANCED CONTACT FORM STYLES ===== */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.enhanced-contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 20px;
}

.step {
    display: flex;
    align-items: center;
    color: #666;
    flex: 1;
    text-align: center;
    justify-content: center;
}

.step-number {
    background: #e1e8ed;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    font-size: 14px;
}

.step.active .step-number {
    background: #2196F3;
}

.step.active {
    color: #2196F3;
    font-weight: 600;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    text-align: center;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.enhanced-contact-form .form-group {
    margin-bottom: 25px;
}

.enhanced-contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.enhanced-contact-form .form-group input,
.enhanced-contact-form .form-group select,
.enhanced-contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
    box-sizing: border-box;
}

.enhanced-contact-form .form-group input:focus,
.enhanced-contact-form .form-group select:focus,
.enhanced-contact-form .form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
    background: white;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.enhanced-contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    background: #e3f2fd;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.enhanced-submit-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.enhanced-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #3d8b40);
}

.enhanced-submit-btn:active {
    transform: translateY(0);
}

.info-section {
    background: #f8f9fa;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    border-left: 5px solid #2196F3;
}

.info-section h3 {
    color: #1976D2;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-section p {
    margin: 0;
    line-height: 1.8;
    color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .enhanced-contact-form {
        padding: 25px 20px;
        margin-top: 20px;
    }

    .step-indicator {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }
    
    .step {
        justify-content: flex-start;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}




/* NOTICE BANNER CLOSE - ΜΟΝΟ ΓΙΑ MOBILE */
@media (max-width: 768px) {
    .notice-banner .notice-close {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: pointer !important;
        background: rgba(255, 255, 255, 0.3) !important;
        color: white !important;
        border: none !important;
        border-radius: 50% !important;
        width: 25px !important;
        height: 25px !important;
        font-size: 16px !important;
        font-weight: bold !important;
        position: absolute !important;
        top: 5px !important;
        right: 10px !important;
        z-index: 10 !important;
    }
    
    .notice-banner .notice-close:hover {
        background: rgba(255, 255, 255, 0.5) !important;
    }
    
    /* Κρύψιμο του banner όταν κλείσει */
    .notice-banner.closed {
        display: none !important;
    }
}

/* Desktop - Κρύψιμο του X button */
@media (min-width: 769px) {
    .notice-banner .notice-close {
        display: none !important;
    }
}



/* ΚΡΥΨΙΜΟ 3 ΣΤΟΙΧΕΙΩΝ ΟΤΑΝ MOBILE MENU ΕΙΝΑΙ ΑΝΟΙΧΤΟ */
@media (max-width: 768px) {
    .nav-links.show {
        display: flex !important;
    }
    
    /* Κρύψιμο όλων των στοιχείων όταν menu είναι ανοιχτό */
    .nav-links.show ~ .tax-obligations-btn,
    body:has(.nav-links.show) .tax-obligations-btn,
    body.menu-open .client-portal-btn,
    body.menu-open .notice-banner {
        display: none !important;
    }
}





/* ===== MOBILE HEADER FIX - ΚΑΘΑΡΗ ΛΥΣΗ ===== */
/* Αυτός ο κώδικας παρακάμπτει όλες τις desktop αλλαγές για το mobile */

@media (max-width: 768px) {
    /* ΕΠΑΝΑΦΟΡΑ HEADER ΣΕ ΑΡΧΙΚΗ ΚΑΤΑΣΤΑΣΗ */
    header {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
        color: white !important;
        padding: 1rem 0 !important;
        position: fixed !important;
        width: 100% !important;
        top: 0 !important;
        z-index: 1000 !important;
        box-shadow: 0 4px 30px rgba(0,0,0,0.15) !important;
        backdrop-filter: blur(10px) !important;
        min-height: auto !important;
    }

    /* ΕΠΑΝΑΦΟΡΑ NAV ΣΕ ΑΡΧΙΚΗ ΚΑΤΑΣΤΑΣΗ */
    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        height: auto !important;
        transform: none !important;
    }

    /* ΕΠΑΝΑΦΟΡΑ HEADER-LEFT ΣΕ ΑΡΧΙΚΗ ΚΑΤΑΣΤΑΣΗ */
    .header-left {
        flex: 1 !important;
        width: auto !important;
        max-width: none !important;
        transform: none !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        padding-left: 0 !important;
        position: relative !important;
    }

    /* ΚΡΥΨΙΜΟ DESKTOP ΣΤΟΙΧΕΙΩΝ ΣΤΟ MOBILE */
    .header-left .company-info,
    .header-left .logo-container,
    .search-system-container {
        display: none !important;
    }

    /* ΕΜΦΑΝΙΣΗ ΚΑΙ ΘΕΣΗ ΚΟΥΜΠΙΩΝ ΣΤΟ MOBILE */
    .tax-obligations-btn,
    .client-portal-btn {
        display: flex !important;
        position: fixed !important;
        z-index: 9998 !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
        border-radius: 15px !important;
        color: white !important;
        border: none !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        align-items: center !important;
        gap: 6px !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
 text-align: center; /* κεντράρισμα κειμένου */
    }

    .tax-obligations-btn {
        top: 70px !important;
        left: 50% !important;
        transform: translateX(-102%) !important;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    }

    .client-portal-btn {
        top: 70px !important;
        right: 3px !important;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    }

    /* NAV LINKS - ΑΡΧΙΚΗ ΛΕΙΤΟΥΡΓΙΚΗ ΚΑΤΑΣΤΑΣΗ */
    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(30, 60, 114, 0.95) !important;
        flex-direction: column !important;
        padding: 2rem !important;
        backdrop-filter: blur(10px) !important;
        list-style: none !important;
        margin: 0 !important;
        z-index: 999 !important;
    }

    .nav-links.show {
        display: flex !important;
    }

    .nav-links li {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .nav-links a {
        color: white !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 25px !important;
        position: relative !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .nav-links a:hover {
        color: #ff6b35 !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    /* MOBILE MENU - ΛΕΙΤΟΥΡΓΙΚΗ ΚΑΤΑΣΤΑΣΗ */
    .mobile-menu {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        width: 25px !important;
        height: 20px !important;
        position: relative !important;
        z-index: 9999 !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .mobile-menu span {
        width: 25px !important;
        height: 3px !important;
        background: white !important;
        margin: 0 !important;
        transition: 0.3s !important;
        display: block !important;
        border-radius: 0 !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* MOBILE MENU ANIMATION */
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px) !important;
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px) !important;
    }

    /* DROPDOWN FUNCTIONALITY */
    .dropdown-nav {
        position: relative !important;
        width: 100% !important;
    }

    .dropdown-nav .dropbtn {
        background: rgba(255, 255, 255, 0.15) !important;
        border-radius: 10px !important;
        transition: all 0.2s ease !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #fff !important;
        font-weight: 500 !important;
        font-size: 15px !important;
        cursor: pointer !important;
        outline: none !important;
        width: 100% !important;
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 48px !important;
        padding: 14px 16px !important;
    }

    .dropdown-content {
        position: static !important;
        display: none !important;
        background: rgba(0, 0, 0, 0.9) !important;
        border-radius: 8px !important;
        margin-top: 8px !important;
        padding: 8px 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        width: 100% !important;
    }

    .dropdown-nav:hover .dropdown-content {
        display: block !important;
    }

    .dropdown-content a {
        color: #ffffff !important;
        background: transparent !important;
        padding: 12px 16px !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        transition: all 0.3s ease !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        color: #ffd700 !important;
    }

    /* ΚΑΘΑΡΙΣΜΟΣ ΟΛΩΝ ΤΩΝ DESKTOP TRANSFORMS */
    * {
        transform: none !important;
    }

    .mobile-menu * {
        transform: none !important;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px) !important;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px) !important;
    }
}

/* DESKTOP - ΔΙΑΤΗΡΗΣΗ ΟΛΩΝ ΤΩΝ ΑΛΛΑΓΩΝ */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}



/* ΚΡΥΨΙΜΟ CLIENT PORTAL BUTTON ΟΤΑΝ MOBILE MENU ΕΙΝΑΙ ΑΝΟΙΧΤΟ */
@media (max-width: 768px) {
    .nav-links.show ~ .client-portal-btn,
    body.menu-open .client-portal-btn {
        display: none !important;
    }
}


/* MOBILE MENU ANIMATION - X TRANSFORMATION */
@media (max-width: 768px) {
    .mobile-menu span {
        width: 25px !important;
        height: 3px !important;
        background: white !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
        display: block !important;
        transform-origin: center !important;
    }

    /* Animation όταν γίνεται X */
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
    }
}








/* ΚΡΥΨΙΜΟ ΣΤΟΙΧΕΙΩΝ ΣΤΟ MOBILE LANDSCAPE - ΕΝΙΣΧΥΜΕΝΟ */
@media (max-width: 1024px) and (orientation: landscape) {
    /* Κρύψιμο όλων των κουμπιών με πιο ισχυρούς selectors */
    .tax-obligations-btn,
    .client-portal-btn,
    header .tax-obligations-btn,
    header .client-portal-btn,
    nav .tax-obligations-btn,
    nav .client-portal-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* ΚΡΥΨΙΜΟ NAVIGATION LINKS ΣΤΟ LANDSCAPE */
    .nav-links,
    .nav-links li,
    .nav-links a,
    nav .nav-links {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Κρύψιμο emoji container */
    .emoji-container,
    .notice-banner,
    .ad-rotator,
    .ads-container,
    .advertisement,
    .banner-ads {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Κρύψιμο logo και άλλων στοιχείων */
    .header-left .company-info,
    .header-left .logo-container,
    .search-system-container {
        display: none !important;
    }
    
    /* Διατήρηση μόνο του mobile menu */
    .mobile-menu {
        display: flex !important;
    }
    
    /* Καθαρό header - μόνο navigation */
    header {
        padding: 0.5rem 0 !important;
        min-height: 50px !important;
    }
    
    nav {
        padding: 0 1rem !important;
        justify-content: flex-end !important;
    }
}





/* Fix για κουμπί Κλείσιμο */
.tax-modal-controls .close-btn,
.tax-modal-controls .close-btn i {
    animation: none !important;
    transform: none !important;
}

.tax-modal-controls .close-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.tax-modal-controls .close-btn:hover {
    background: #ef4444 !important;
    transform: none !important;
    animation: none !important;
}



/* Μετακίνηση κουμπιών πιο αριστερά */
.tax-modal-header {
    justify-content: flex-start !important;
    gap: 30px !important;
}

.tax-modal-controls {
    margin-left: auto !important;
    margin-right: 20px !important;
    gap: 15px !important;
}

/* Μικρότερα κουμπιά για να χωρέσουν */
.tax-modal-controls .modal-btn {
    padding: 8px 12px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
}

/* Μεγαλύτερο πλαίσιο για κουμπί Κλείσιμο */
.tax-modal-controls .close-btn {
    padding: 8px 20px !important; /* Αντί για 8px 12px */
    min-width: 100px !important;
}



/* Responsive - Κουμπιά σε 2 γραμμές στο κινητό */
@media (max-width: 768px) {
    .tax-modal-header {
        flex-direction: column;
        gap: 15px !important;
        align-items: flex-start !important;
    }
    
    .tax-modal-controls {
        flex-wrap: wrap;
        margin-left: 0 !important;
        width: 100%;
        justify-content: flex-start;
    }
    
    .tax-modal-controls .modal-btn {
        flex: 0 0 auto;
    }
    
    /* Το Κλείσιμο σε δεύτερη γραμμή */
    .tax-modal-controls .close-btn {
        flex-basis: 100%;
        margin-top: 5px;
    }
    
    .tax-modal-title {
        font-size: 18px;
    }
}

.welcome-message h3,
.welcome-message p {
    color: #6BB6FF; /* Μπλε απαλό */
}




/* ===================================
   BLOG ACTIONS
   =================================== */
.blog-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.blog-read-more,
.blog-download {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-read-more {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.blog-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.blog-download {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.blog-download:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   PDF MODAL
   =================================== */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

.pdf-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pdf-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.pdf-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #1e3a8a;
    font-weight: 700;
}

.pdf-modal-actions {
    display: flex;
    gap: 10px;
}

.pdf-action-btn,
.pdf-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: white;
    color: #1e3a8a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
}

.pdf-action-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.pdf-close-btn {
    background: #ef4444;
    color: white;
}

.pdf-close-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Modal Body */
.pdf-modal-body {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f9fafb;
    min-height: 500px;
}

#pdfViewer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pdf-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #6b7280;
}

.pdf-loading i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.pdf-loading p {
    font-size: 1rem;
    margin: 0;
}

/* Modal Footer */
.pdf-modal-footer {
    padding: 15px 30px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

.pdf-note {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-note i {
    color: #3b82f6;
}

.pdf-note a {
    color: #1e3a8a;
    text-decoration: underline;
    font-weight: 600;
}

.pdf-note a:hover {
    color: #3b82f6;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .blog-actions {
        flex-direction: column;
    }

    .pdf-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .pdf-modal-header {
        padding: 15px 20px;
        border-radius: 0;
    }

    .pdf-modal-header h3 {
        font-size: 1rem;
    }

    .pdf-action-btn,
    .pdf-close-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .pdf-modal-footer {
        padding: 12px 20px;
    }

    .pdf-note {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.85rem;
    }
}

/* Fullscreen Mode */
.pdf-modal.fullscreen {
    padding: 0 !important;
}

.pdf-modal.fullscreen .pdf-modal-content {
    max-width: 100% !important;
    max-height: 100vh !important;
    height: 100vh !important;
    width: 100vw !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.pdf-modal.fullscreen .pdf-modal-header {
    border-radius: 0 !important;
    position: sticky;
    top: 0;
    z-index: 10;
}

.pdf-modal.fullscreen .pdf-modal-body {
    height: calc(100vh - 120px) !important;
}

.pdf-modal.fullscreen .pdf-modal-footer {
    border-radius: 0 !important;
    position: sticky;
    bottom: 0;
}

/* Fullscreen button animation */
.pdf-action-btn i {
    transition: transform 0.3s ease;
}

.pdf-modal.fullscreen #fullscreenBtn i {
    transform: rotate(180deg);
}



/* ===== ΦΟΡΟΛΟΓΙΚΑ & ΕΠΙΚΑΙΡΑ SIDEBAR - 3 ΚΑΤΗΓΟΡΙΕΣ ===== */
.tax-news-sidebar {
    position: absolute;
    left: 5px;
    top: 1415px;
    width: 350px;
    /* ΔΙΕΓΡΑΨΕ ΤΙΣ ΓΡΑΜΜΕΣ max-height και overflow-y */
    z-index: 900;
    transition: all 0.3s ease;
}

.tax-news-sidebar::-webkit-scrollbar {
    width: 6px;
}

.tax-news-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.tax-news-sidebar::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 10px;
}

.sidebar-container {
background: linear-gradient(135deg, #fafcff 0%, #eef5ff 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Header με Live Indicator */
.sidebar-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6b35;
    position: relative;
}

.sidebar-header i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 10px;
    display: block;
}

.sidebar-header h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

/* Live Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Section Title */
.sidebar-section {
    margin-bottom: 25px;
}

.section-title {
    color: #2a5298;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(30, 60, 114, 0.1);
}

.section-title i {
    color: #ff6b35;
}

/* Articles List */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-article {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 60, 114, 0.1);
}

.sidebar-article:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

/* Thumbnail */
.article-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.sidebar-article:hover .article-thumb {
    border-color: #ff6b35;
    transform: scale(1.05);
}

/* Article Info */
.article-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.article-info h5 {
    margin: 0 0 5px 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.article-info a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-info a:hover {
    color: #ff6b35;
}

.article-date {
    font-size: 0.7rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-date i {
    font-size: 0.65rem;
    color: #ff6b35;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #666;
}

.loading-spinner i {
    font-size: 1.5rem;
    color: #ff6b35;
}

/* CTA Button */
.sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 1400px) {
    .tax-news-sidebar {
        width: 300px;
    }
}

@media (max-width: 1200px) {
    .tax-news-sidebar {
        width: 280px;
        left: 10px;
    }
}

@media (max-width: 1024px) {
    .tax-news-sidebar {
        display: none;
    }
}





