/* ==========================================================================
   RESET & BASE VARIABLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f0f11;
    --bg-card: #18181c;
    --gold: #d4af37;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
}
/* Header Action Buttons (Rounded Rectangles με SVG & Text) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    height: 42px;
    border-radius: 10px; /* Στρογγυλεμένες γωνίες */
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.3px;
}

.btn-icon {
    font-size: 15px;
    line-height: 1;
}

.insta-svg {
    display: block;
    transition: transform 0.3s ease;
}

/* Κουμπί Τηλεφώνου */
.call-btn {
    background: var(--gold);
    color: #000000;
    border-color: var(--gold);
}

.call-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* Κουμπί Instagram */
.insta-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.insta-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 39, 67, 0.4);
}

.insta-btn:hover .insta-svg {
    transform: scale(1.1); /* Διακριτικό zoom στο λογότυπο του IG στο hover */
}

/* Responsive adjustment για κινητά (στα κινητά αφήνουμε μόνο τα εικονίδια) */
@media (max-width: 992px) {
    .btn-text {
        display: none;
    }
    .action-btn {
        padding: 0;
        width: 42px;
        height: 42px;
    }
}σταρσ
/* ==========================================================================
   NAVBAR (Με Pill Buttons & Hover Effects)
   ========================================================================== */
.navbar {
    background: rgba(15, 15, 17, 0.85);
    backdrop-filter: blur(12px); /* Glassmorphism εφέ */
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 148px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px; /* Μικρότερο κενό για να χωράνε τα κουμπιά */
}

/* Κουμπιά Μενού */
.nav-links li a {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Hover & Active Εφέ στα Κουμπιά */
.nav-links li a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1); /* Ελαφρύ χρυσό φόντο */
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2); /* Soft Gold Glow */
    transform: translateY(-1px);
}


/* ==========================================================================
   HERO SECTION & SLIDER (Διόρθωση Εμφάνισης Εικόνων)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    height: 55vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Εξασφάλιση ότι το Swiper πιάνει όλο το ύψος/πλάτος */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Διόρθωση για να εμφανίζονται οι εικόνες background */
.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Σκούρο φίλτρο πάνω από τις εικόνες για να διαβάζονται τα κείμενα */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,17,0.7) 0%, rgba(15,15,17,0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3; /* Πάνω από το overlay */
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.services-section, 
.transformations-section, 
.gallery-section, 
.review-section, 
.contact-section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: #ffffff;
}

.gold-divider {
    height: 2px;
    width: 50px;
    background-color: var(--gold);
    margin: 15px auto;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-img-wrapper {
    height: 500px;
    background-color: #222225;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Εστίαση στο κέντρο της φωτογραφίας */
}


.service-info {
    padding: 25px;
}

.service-info h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 20px;
}

.service-info p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================================
   TRANSFORMATIONS SECTION (1 BEFORE + 2 AFTER)
   ========================================================================== */
.transformations-section {
    background-color: #121215;
}

.transformations-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.transform-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.transform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.transform-header h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 22px;
}

.transform-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--gold);
}

.transform-images {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.after-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.img-box {
    position: relative;
    height: 500px;
    background-color: #222225;
    border-radius: 10px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.label-before {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.label-after {
    background-color: var(--gold);
    color: #000000;
}

/* ==========================================================================
   REVIEWS & FOOTER
   ========================================================================== */
.review-section {
    background-color: #151518;
}

.review-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
 
.stars {
    color: var(--gold);
    font-size: 28px;
    margin: 10px 0;
}

.qr-card {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    color: #000000;
}

.qr-card img {
    width: 150px;
    height: 150px;
    display: block;
}

footer {
    background-color: #0a0a0c;
    text-align: center;
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid #1f1f24;
}
/* Golden Stars & Rating Styling */
.stars-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    background: rgba(212, 175, 55, 0.08);
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.stars {
    color: var(--gold);
    font-size: 26px;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
}

.rating-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
/* Clickable Rating Box */
.stars-card-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stars-card-link:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.stars {
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.rating-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.click-hint {
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.stars-card-link:hover .click-hint {
    transform: translateX(4px); /* Μικρό εφέ κίνησης στο βέλος */
}

/* Responsive adjustment για κινητά */
@media (max-width: 576px) {
    .stars-card-link {
        flex-direction: column;
        gap: 6px;
        border-radius: 20px;
    }
    .click-hint {
        border-left: none;
        padding-left: 0;
    }
}

/* Image Sharpening Fix 
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}*/

/* ==========================================================================
   MOBILE RESPONSIVE (FINAL PERFECT FIX)
   ========================================================================== */
@media (max-width: 992px) {
    .nav-container {
        padding: 0 15px;
    }

    /* Μικρότερο Logo στα κινητά για να χωράνε όλα */
    .nav-logo {
        height: 38px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Μικρότερα κουμπιά Call/Insta στα κινητά */
    .action-btn {
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        border-radius: 8px;
    }

    .btn-text {
        display: none !important;
    }

    /* Hamburger Menu Icon */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        cursor: pointer;
        z-index: 1100;
        margin-left: 4px;
    }

    .hamburger span {
        display: block;
        height: 2.5px;
        width: 100%;
        background-color: var(--gold);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animation X στο κλικ */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Sliding Menu Panel */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(12, 12, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1050;
        padding: 0;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        font-size: 15px;
        padding: 10px 20px;
        width: 80%;
        margin: 0 auto;
    }

    /* Hero Buttons Fix για κινητά (Κάθετη διάταξη) */
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
        font-size: 13px;
    }
}