/* ==========================================================================
   1. COZY ASYMMETRIC HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-main);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-side { text-align: left; }

.hero-text-side h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-text-side h1 span { color: var(--color-accent); }

.hero-text-side p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Organic Visual Mask (Soft & Friendly Shape) */
.hero-image-side {
    display: flex;
    justify-content: center;
}

.organic-blob-mask {
    width: 100%;
    max-width: 440px;
    height: 500px;
    /* Soft στρογγυλεμένες γωνίες με ασυμμετρία που αποπνέει οικειότητα */
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(108, 95, 85, 0.06);
    background-color: var(--color-accent-soft);
    animation: blobMorph 10s ease-in-out infinite alternate;
}

.organic-blob-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes blobMorph {
    0% { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
    100% { border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%; }
}

/* ==========================================================================
   2. THE SUPPORTING STEPS (3-Step Cozy Minimal Flow)
   ========================================================================== */
.steps-section {
    background-color: var(--bg-card);
    padding: 100px 0;
    border-top: 1px solid rgba(108, 95, 85, 0.04);
}

.steps-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px auto;
}
.steps-header h2 { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 16px; letter-spacing: -0.5px; }
.steps-header h2 span { color: var(--color-accent); }
.steps-header p { color: var(--text-muted); font-size: 1.05rem; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: left;
    background-color: var(--bg-main);
    padding: 40px 30px;
    border-radius: var(--radius-premium);
}

.step-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   3. MODERN FRIENDLY SERVICES PREVIEW (Architectural Design)
   ========================================================================== */
.services-preview-section {
    padding: 120px 0;
    background-color: var(--bg-main);
}

.services-main-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px auto;
}
.services-main-header h2 { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 16px; letter-spacing: -0.5px; }
.services-main-header h2 span { color: var(--color-accent); }
.services-main-header p { color: var(--text-muted); font-size: 1.05rem; }

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.modern-service-card {
    background: var(--bg-card);
    padding: 50px 35px;
    border-radius: var(--radius-premium);
    border: 1px solid rgba(108, 95, 85, 0.03);
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.modern-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(108, 95, 85, 0.04);
}

/* Minimalist CSS Line Icons (Αντί για emoji) */
.minimal-icon-wrapper {
    margin-bottom: 28px;
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
}

.custom-icon-circle {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: relative;
}
.custom-icon-circle::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    top: -4px;
    right: -4px;
}

/* Παραλλαγή εικονιδίου για τη μεσαία κάρτα */
.custom-icon-circle.dynamic {
    border-radius: 4px;
    transform: rotate(45deg);
}

.modern-service-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 14px;
    font-weight: 600;
}

.modern-service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 30px;
}

.friendly-arrow-link {
    text-decoration: none;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.friendly-arrow-link span {
    transition: transform 0.2s ease;
}
.modern-service-card:hover .friendly-arrow-link span {
    transform: translateX(4px);
}
.friendly-arrow-link:hover { color: var(--color-primary); }

/* ==========================================================================
   4. COZY BANNER ISLAND RESORT
   ========================================================================== */
.cozy-banner-section {
    background-color: var(--bg-main);
    padding-bottom: 120px;
}

.cozy-banner-island {
    background-color: var(--color-accent-soft);
    padding: 80px 40px;
    border-radius: var(--radius-premium);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cozy-banner-island h2 {
    font-size: 2.3rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.cozy-banner-island h2 span { color: var(--color-accent); }

.cozy-banner-island p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 40px auto;
}

/* ==========================================================================
   5. RESPONSIVE DESIGN FOR HOME PAGE
   ========================================================================== */
@media screen and (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text-side { display: flex; flex-direction: column; align-items: center; }
    .hero-text-side h1 { font-size: 2.6rem; text-align: center; }
    .hero-text-side p { text-align: center; margin-bottom: 30px; }
    .organic-blob-mask { height: 400px; max-width: 360px; }
    
    .steps-grid, .modern-services-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
    .steps-section, .services-preview-section { padding: 80px 0; }
    .cozy-banner-island h2 { font-size: 1.8rem; }
}

@media screen and (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
}