/* --- 1. GENERAL STYLES & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d0a14;
    color: #f3f4f6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, #b55fe6 0%, #ff6550 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 2. NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    text-decoration: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 145px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(181, 95, 230, 0.4));
    display: block;
}

.nav-links a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.btn-cta-nav {
    background-color: #ffffff;
    color: #0d0a14;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    background-color: #e5e7eb;
}

/* --- 3. CINEMATIC HERO SECTION --- */
.main-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 40px 20px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #0d0a14;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1622737133809-d95047b9e673?q=80&w=1280');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.2);
    z-index: 1;
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.hero-main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.hero-main-subtitle {
    font-size: clamp(15px, 1.8vw, 19px);
    font-weight: 400;
    color: #cbd5e1;
    margin: 0 0 35px 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Platforms Container */
.platforms-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

.platform-name {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tiktok-color { color: #00f2fe; text-shadow: 0 2px 8px rgba(0,242,254,0.3); }
.reels-color { color: #fe2c55; text-shadow: 0 2px 8px rgba(254,44,85,0.3); }
.shorts-color { color: #ff0000; text-shadow: 0 2px 8px rgba(255,0,0,0.3); }

.platform-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tiktok-bg { background: #000000; border: 2px solid rgba(255,255,255,0.1); }
.reels-bg { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.shorts-bg { background: #ffffff; }

.platform-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.8);
}

.platform-icon-box svg {
    width: 32px;
    height: 32px;
}

.btn-hero-demo {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-demo:hover {
    background: #ffffff;
    color: #0d0a14;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* --- 4. STATS SECTION --- */
.stats-section {
    padding: 40px 10% 60px 10% !important;
    background: #0d0a14;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(181, 95, 230, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- 5. PORTFOLIO SECTION --- */
.portfolio {
    padding: 100px 10%;
    background: #0d0a14;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    color: #9ca3af;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(181, 95, 230, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.card-info {
    padding: 24px;
}

.card-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.card-info p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- 6. SERVICES & PRICING SECTION --- */
.services {
    padding: 100px 10%;
    background: #0d0a14;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px auto;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(181, 95, 230, 0.3);
}

.price-card.featured {
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #b55fe6 0%, #ff6550 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.package-price span {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 400;
}

.package-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 32px;
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
}

.package-features li {
    color: #f3f4f6;
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-package {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, border-color 0.3s;
}

.price-card.featured .btn-package {
    background: linear-gradient(135deg, #e0523c 0%, #e65c47 100%);
    border: none;
}

.btn-package:hover {
    background: rgba(255, 255, 255, 0.1);
}

.price-card.featured .btn-package:hover {
    opacity: 0.9;
}

/* --- Detailed Info Box (Υπηρεσίες & Όροι) --- */
.detailed-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-column h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    color: #ff6550;
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.info-item p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footnote {
    text-align: center;
    color: #4b5563;
    font-size: 0.85rem;
    margin-top: 25px;
}

/* --- 7. CONTACT SECTION --- */
.contact {
    padding: 100px 10%;
    background: #0d0a14;
    position: relative;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #4b5563;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #b55fe6;
    box-shadow: 0 0 10px rgba(181, 95, 230, 0.2);
}

.contact-form select option {
    background: #130f1e;
    color: #ffffff;
}

.btn-submit {
    background: linear-gradient(135deg, #e0523c 0%, #e65c47 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(230, 92, 71, 0.2);
}

.btn-submit:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(230, 92, 71, 0.3);
}

/* --- 8. FOOTER --- */
.main-footer {
    text-align: center;
    padding: 40px 10%;
    background: #09060e;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.main-footer p {
    color: #4b5563;
    font-size: 0.85rem;
}

/* --- 9. MOBILE OPTIMIZATION (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .nav-links {
        display: none !important;
    }

    .logo-img {
        height: 35px;
    }

    .btn-cta-nav {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .main-hero {
        padding: 100px 15px 40px 15px;
        min-height: auto;
    }

    .hero-main-title {
        font-size: 1.8rem !important;
        margin-bottom: 10px;
    }

    .hero-main-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .platforms-container {
        gap: 20px;
        margin-bottom: 35px;
    }

    .platform-item {
        width: 90px;
    }

    .platform-name {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .platform-icon-box {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }

    .platform-icon-box svg {
        width: 26px;
        height: 26px;
    }

    .btn-hero-demo {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .portfolio {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .detailed-info-box {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 25px;
    }
}