/*
==================================================
ΧΡΩΜΑΤΑ HEX:
  --p  #FF6B6B   --s  #4ECDC4
  --y  #FFE66D   --pu #C77DFF
  --bg #F7F9FC   --dk #2D3142   --wh #FFFFFF
FONTS: Fredoka (headings) · Nunito (body)
==================================================
*/
:root {
    --p: #45c4de;
    --s: #0B2D72;
    --y: #ae889f;
    --pu: #C6E7FF;
    --bg: #FBFBFB;
    --dk: #2D3142;
    --wh: #FFFFFF
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--dk);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text,
.nav-cta,
.btn-p,
.btn-o,
.sec-lbl,
.sec-ttl {
    font-family: 'Fredoka', sans-serif
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-16px)
    }
}

@keyframes floatX {

    0%,
    100% {
        transform: translateX(0) rotate(0deg)
    }

    50% {
        transform: translateX(12px) rotate(7deg)
    }
}

@keyframes blob {

    0%,
    100% {
        border-radius: 60% 40% 70% 30%/50% 60% 40% 70%;
        transform: scale(1)
    }

    50% {
        border-radius: 40% 60% 30% 70%/60% 40% 70% 30%;
        transform: scale(1.05)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.15)
    }
}

.f0 {
    animation: fadeUp .7s .0s both
}

.f1 {
    animation: fadeUp .7s .12s both
}

.f2 {
    animation: fadeUp .7s .24s both
}

.f3 {
    animation: fadeUp .7s .38s both
}

.f4 {
    animation: fadeUp .7s .52s both
}

/* ── NAVBAR ── */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 4px 32px rgba(45, 49, 66, .08), inset 0 -1px 0 rgba(78, 205, 196, .2);
    height: 72px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s;
    box-sizing: border-box;
    width: 100%;
}

.logo-text {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--p);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo-box {
    width: 150px;
    height: 150px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1;
    color: var(--dk);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color .2s
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: var(--s);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s
}

.nav-links a:hover {
    color: var(--p)
}

.nav-links a:hover::after {
    transform: scaleX(1)
}

.nav-cta {
    font-size: .95rem;
    font-weight: 600;
    background: var(--p);
    color: var(--wh);
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255, 107, 107, .35);
    transition: transform .18s, box-shadow .18s
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 107, .45)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dk);
    border-radius: 4px;
    transition: transform .3s, opacity .3s;
}

.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); }

/* ── DROPDOWN (desktop) ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 18px;
}

.nav-dropdown > a {
    gap: 5px;
}

.nav-dropdown > a::after {
    display: none !important;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--dk);
    transition: transform .25s;
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(45,49,66,.14);
    border: 1px solid rgba(69,196,222,.15);
    padding: 10px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s, transform .22s, visibility .22s;
    transform: translateX(-50%) translateY(-6px);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--dk);
    text-decoration: none;
    transition: color .18s, background .18s;
    border-radius: 10px;
    margin: 2px 8px;
}

.dropdown-menu li a:hover {
    color: var(--p);
    background: rgba(69,196,222,.08);
}

.dropdown-menu li a::after {
    display: none !important;
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - 72px);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s, transform .25s, visibility .25s;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px 0 28px;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 430px;
    padding: 0 8%;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(45,49,66,.07);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.28rem;
    line-height: 1.15;
    color: var(--dk);
    text-decoration: none;
    min-height: 52px;
    padding: 12px 0;
    transition: color .2s;
}

.mobile-menu ul li a:hover, 
.mobile-menu ul li a:active {
    color: var(--p);
}

.mobile-menu .mobile-sub {
    font-size: .95rem !important;
    color: #6b7094 !important;
    min-height: 44px;
    padding: 10px 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
}

.mobile-menu .mobile-sub:hover,
.mobile-menu .mobile-sub:active {
    color: var(--p) !important;
}

.mobile-divider {
    font-family: 'Nunito', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--p);
    display: block;
    padding: 16px 0 8px;
    opacity: .7;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #c4e2e8 0%, #eafffe 50%, #d9e6ea 100%);
    display: flex;
    align-items: center;
    padding: 100px 6% 0;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.blob {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    animation: blob 7s ease-in-out infinite;
    opacity: .17
}

.b1 {
    width: 480px;
    height: 480px;
    background: var(--p);
    top: -110px;
    right: -110px;
    border-radius: 60% 40% 70% 30%/50% 60% 40% 70%;
    animation-delay: 0s
}

.b2 {
    width: 340px;
    height: 340px;
    background: var(--s);
    bottom: 50px;
    left: -80px;
    border-radius: 40% 60% 30% 70%/60% 40% 70% 30%;
    animation-delay: 2.5s
}

.b3 {
    width: 220px;
    height: 220px;
    background: var(--y);
    top: 28%;
    right: 18%;
    border-radius: 70% 30% 50% 50%/40% 60% 40% 60%;
    animation-delay: 4.5s
}

.fs {
    position: absolute;
    pointer-events: none;
    z-index: 0
}

.fs1 {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--y);
    opacity: .75;
    top: 22%;
    left: 9%;
    animation: floatY 4s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(255, 230, 109, .4)
}

.fs2 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pu);
    opacity: .65;
    top: 62%;
    right: 11%;
    animation: floatY 5s 1s ease-in-out infinite
}

.fs3 {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--s);
    opacity: .55;
    bottom: 28%;
    left: 14%;
    animation: floatX 6s ease-in-out infinite
}

.fs4 {
    font-size: 2.2rem;
    top: 14%;
    right: 34%;
    animation: floatY 3.5s .5s ease-in-out infinite
}

.fs5 {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 10px solid var(--p);
    opacity: .22;
    bottom: 32%;
    right: 4%;
    animation: floatY 5.5s 1.5s ease-in-out infinite
}

.fs6 {
    width: 0;
    height: 0;
    border-left: 26px solid transparent;
    border-right: 26px solid transparent;
    border-bottom: 46px solid var(--pu);
    opacity: .22;
    top: 58%;
    left: 4%;
    animation: floatX 7s 2s ease-in-out infinite
}

.fs7 {
    font-size: 1.6rem;
    bottom: 40%;
    left: 24%;
    animation: spin 14s linear infinite;
    opacity: .3
}

.hero-inner {
    position: relative;
    justify-content: center;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
}

.temp-hero-inner {
    position: relative;
    align-items: center;
    gap: 56px;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
}

.temp-hero-inner h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dk);
    margin-bottom: 22px
}

.temp-hero-inner span {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dk);
    margin-bottom: 22px
}


.hero-logo {
    width: clamp(180px, 55vw, 700px);
    height: auto;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.section-wave {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.section-wave.down {
    transform: scaleY(1);
    bottom: -1px;
}

.section-wave.up {
    transform: scale(-1, -1);
    top: -1px;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wh);
    border: 2px solid var(--s);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--s);
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(78, 205, 196, .18)
}

.bdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--s);
    display: inline-block;
    animation: pulse 1.8s ease-in-out infinite
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dk);
    margin-bottom: 22px
}

.hp {
    background: linear-gradient(135deg, var(--p), #ff9a9a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hs {
    background: linear-gradient(135deg, var(--s), #a8edea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5f7a;
    max-width: 500px;
    margin-bottom: 38px
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-p {
    font-size: 1.05rem;
    font-weight: 600;
    background: var(--p);
    color: var(--wh);
    padding: 15px 38px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform .18s;
    z-index: 5;
}

.btn-p:hover {
    transform: translateY(-3px);
}

.btn-o {
    font-size: 1.05rem;
    font-weight: 600;
    background: transparent;
    color: var(--dk);
    padding: 14px 36px;
    border-radius: 50px;
    border: 2.5px solid var(--dk);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform .18s, background .18s, color .18s
}

.btn-o:hover {
    transform: translateY(-3px);
    background: var(--dk);
    color: var(--wh)
}

.wave {
    display: block;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
    font-size: 0;
    overflow: hidden;
}

.wave svg {
    display: block;
    width: 100%;
    height: auto;
}

section {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0
}

@media (max-width: 900px) {
    .temp-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }
}

/* ── SERVICES ── */
.services {
    background: var(--wh);
    padding: 90px 6% 100px;
    position: relative;
    overflow: visible
}

.sb1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--s);
    opacity: .07;
    border-radius: 60% 40% 70% 30%/50% 60% 40% 70%;
    top: 18px;
    left: -80px;
    pointer-events: none
}

.sb2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--pu);
    opacity: .07;
    border-radius: 40% 60% 30% 70%/60% 40% 70% 30%;
    bottom: 13px;
    right: -60px;
    pointer-events: none
}

.si {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.sec-lbl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--s);
    margin-bottom: 12px
}

.sec-lbl::before {
    content: '';
    width: 22px;
    height: 3px;
    background: var(--s);
    border-radius: 4px;
    display: block
}

.sec-ttl {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dk);
    margin-bottom: 14px
}

.sec-ttl span {
    color: var(--p)
}

.sec-sub {
    font-size: 1rem;
    color: #6b7094;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 58px
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px
}

.card {
    background: var(--bg);
    border-radius: 25px;
    padding: 38px 32px;
    box-shadow: 0 4px 24px rgba(45, 49, 66, .07);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
    border: 1.5px solid transparent
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 25px 25px 0 0
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 48px rgba(45, 49, 66, .13)
}

.c1:hover {
    border-color: rgba(255, 107, 107, .18)
}

.c2:hover {
    border-color: rgba(78, 205, 196, .18)
}

.c3:hover {
    border-color: rgba(199, 125, 255, .18)
}

.c4:hover {
    border-color: rgba(246, 255, 125, 0.18)
}

.c5:hover {
    border-color: rgba(125, 255, 142, 0.18)
}

.ci {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .09);
    transition: transform .25s
}

.card:hover .ci {
    transform: scale(1.1) rotate(-4deg)
}

.i1 {
    background: linear-gradient(135deg, #fff1f1, #ffd5d5)
}

.i2 {
    background: linear-gradient(135deg, #f0fffe, #c2f5f2)
}

.i3 {
    background: linear-gradient(135deg, #f9f0ff, #e8c5ff)
}

.i4 {
    background: linear-gradient(135deg, #fafff0, #f4ffc5)
}

.i5 {
    background: linear-gradient(135deg, #f2fff0, #c5ffd2)
}

.i6 {
    background: linear-gradient(135deg, #f0f9ff, #cbebff)
}

.card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dk);
    margin-bottom: 12px
}

.card p {
    font-size: .93rem;
    color: #6b7094;
    line-height: 1.7
}

.more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: gap .2s;
    color: var(--s)
}

.more:hover {
    gap: 10px
}

/* TEXT-SECTION */
.text-section1 {
    background: var(--wh);
    padding: 90px 6% 100px;
    position: relative;
    overflow: visible
}

.text-section1-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.text-section1-text {
    flex: 1;
    min-width: none;
}

.text-section1-text h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--p);
    margin-bottom: 14px
}

.text-section1-text .desc {
    font-size: 1rem;
    color: #6b7094;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 58px
}

.text-section1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
    flex-shrink: 0;
    width: 420px;
    height: 380px;
    animation: floatY 5s ease-in-out infinite;
}

.text-section1-photo-ph {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Fredoka', sans-serif;
    font-size: .9rem;
    box-shadow: 0 4px 18px rgba(45, 49, 66, .08);
    transition: transform .25s;
}

.text-section1-photo-ph svg {
    width: 28px;
    height: 28px;
    opacity: 0.7;
}

.tsi0 {
    background: linear-gradient(135deg, #fff1f1, #ffd5d5);
    color: #c0525a;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    animation: floatY 10s ease-in-out infinite;
}

.tsi1 {
    background: linear-gradient(135deg, #f0fffe, #c2f5f2);
    color: #2a8c86;
    grid-column: 2/3;
    grid-row: 3/3;
    animation: floatY 5s ease-in-out infinite;
}

.tsi2 {
    background: linear-gradient(135deg, #f9f0ff, #e8c5ff);
    color: #8a4dbb;
    grid-column: 3/4;
    grid-row: 3/3;
    animation: floatY 7s ease-in-out infinite;
}

.tsi3 {
    background: linear-gradient(135deg, #fafff0, #d8ffc5);
    color: #4a8c2a;
    animation: floatY 5s ease-in-out infinite;
}

/* SERVICE */

.temp-intro {
    padding: 80px 6% 70px;
    background-color: var(--wh);
}

.temp-intro-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.temp-intro-inner .sec-sub {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.temp-svc-features {
    padding: 0 6% 90px;
    background-color: var(--wh);
}

.temp-svc-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.temp-feat-card {
    background: var(--wh);
    border-radius: 25px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 22px rgba(45, 49, 66, .07);
    transition: transform .25s, box-shadow .25s
}

.temp-feat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 40px rgba(45, 49, 66, .12)
}

.temp-feat-card:hover .ci {
    transform: scale(1.1) rotate(-4deg)
}

.temp-feat-card .i1 {
    border-color: #fff1f1;
}

.temp-feat-card .i2 {
    border-color: #f0fffe;
}

.temp-feat-card .i3 {
    border-color: #f9f0ff;
}

.temp-feat-card .i4 {
    border-color: #fafff0;
}


.temp-feat-card h4 {
    font-family: 'Fredoka', sans-serif;
    text-align: start;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--dk);
    margin-bottom: 10px;
}

.temp-feat-card p {
    text-align: start;
    font-size: .9rem;
    color: #6b7094;
    line-height: 1.75;
}

/* GALLERY */

/* ── GALLERY — light purple pastel ── */
.svc-gallery {
    background: #ede8f5;
    padding: 90px 6%;
    position: relative;
    overflow: hidden;
}

.gb1 {
    width: 420px;
    height: 420px;
    background: #b89de0;
    top: -100px;
    left: -80px;
    opacity: .18;
    animation-delay: 0s;
}

.gb2 {
    width: 300px;
    height: 300px;
    background: #c8b4e8;
    bottom: -70px;
    right: -60px;
    opacity: .14;
    animation-delay: 3s;
}

.gallery-header {
    max-width: 1100px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 2;
}

.gallery-header .sec-lbl {
    color: #7c5cbf;
}

.gallery-header .sec-lbl::before {
    background: #7c5cbf;
}

.gallery-header .sec-ttl {
    color: #2d1f4a;
}

.gallery-header .sec-ttl span {
    color: #7c5cbf;
}

.gallery-grid {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 230px 230px;
    gap: 16px;
}

.gp {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    display: block;
}

.gp:hover img {
    transform: scale(1.06);
}

.gp::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, transparent 45%, rgba(80, 40, 130, .35)); */
    opacity: 0;
    transition: opacity .3s;
}

.gp:hover::after {
    opacity: 1;
}

.gp1 {
    grid-column: 1 / 6;
    grid-row: 1;
}

.gp2 {
    grid-column: 6 / 9;
    grid-row: 1;
}

.gp3 {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}

.gp4 {
    grid-column: 1 / 4;
    grid-row: 2;
}

.gp5 {
    grid-column: 4 / 9;
    grid-row: 2;
}

.gp-ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Fredoka', sans-serif;
    font-size: .9rem;
    position: relative;
    overflow: hidden;
}

.gp-ph svg {
    width: 32px;
    height: 32px;
    opacity: .6;
}

/* Images inside gallery cells fill the full cell */
.gp-ph > .logo-box {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
}

.gp-ph > .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* POINTS */

.svc-after {
    padding: 90px 6%;
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
}

.after-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.after-text .sec-lbl,
.after-text .sec-ttl {
    text-align: left;
}

.after-text .sec-ttl {
    margin-bottom: 20px;
}

.after-text p {
    font-size: 1rem;
    color: #6b7094;
    line-height: 1.85;
    margin-bottom: 16px;
}

.after-text p:last-of-type {
    margin-bottom: 32px;
}

.steps-card {
    background: var(--wh);
    border-radius: 25px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 4px 22px rgba(45, 49, 66, .07);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* ── Step numbers: light purple pastel ── */
.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c9b8e8, #a98fd4);
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(169, 143, 212, .35);
    transition: transform .25s;
}

.step-num:hover {
    transform: scale(1.1) rotate(-4deg)
}

.step h5 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dk);
    margin-bottom: 4px;
}

.step p {
    font-size: .9rem;
    color: #9ba1cc;
    line-height: 1.65;
    margin: 0;
}

/* ── CONTACT STRIP ── */
.contact-strip {
    margin: 80px 6%;
    background: var(--dk);
    border-radius: 28px;
    padding: 54px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: 0 16px 48px rgba(130, 147, 220, .18);
    position: relative;
    overflow: hidden;
}

.contact-strip::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 260px;
    height: 260px;
    background: var(--p);
    border-radius: 50%;
    opacity: .1;
}

.cs-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--wh);
    margin-bottom: 10px;
}

.cs-text p {
    font-size: .98rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
}


/* ── WHY US ── */
.why {
    background: var(--wh);
    padding: 90px 6% 100px;
    position: relative;
    overflow: visible
}

.wb1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--y);
    opacity: .1;
    top: -60px;
    right: -60px;
    pointer-events: none
}

.wb2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--p);
    opacity: .08;
    bottom: -40px;
    left: -40px;
    pointer-events: none
}

.dots {
    position: absolute;
    top: 30px;
    left: 6%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 13px;
    opacity: .12;
    pointer-events: none
}

.dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk);
    display: block
}

.wgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1
}

.wbox {
    background: var(--wh);
    border-radius: 25px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 22px rgba(45, 49, 66, .07);
    transition: transform .25s, box-shadow .25s
}

.wbox:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 40px rgba(45, 49, 66, .12)
}

.wbox:nth-child(1) {
    border-top: 5px solid var(--p)
}

.wbox:nth-child(2) {
    border-top: 5px solid var(--s)
}

.wbox:nth-child(3) {
    border-top: 5px solid var(--y)
}

.wbox:nth-child(4) {
    border-top: 5px solid var(--pu)
}

.wi {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 18px
}

.w1 {
    background: #fff0f0;
    animation: floatY 4s ease-in-out infinite
}

.w2 {
    background: #f0fffe;
    animation: floatY 4s 1s ease-in-out infinite
}

.w3 {
    background: #fffdf0;
    animation: floatY 4s 2s ease-in-out infinite
}

.w4 {
    background: #f8f0ff;
    animation: floatY 4s 3s ease-in-out infinite
}

.wbox h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dk);
    margin-bottom: 10px
}

.wbox p {
    font-size: .9rem;
    color: #6b7094;
    line-height: 1.65
}

/* ── LOCATION ── */
.loc {
    background: var(--bg);
    padding: 90px 6% 100px;
    position: relative;
    overflow: visible
}

.loc-in {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.loc-t {
    flex: 1;
    min-width: 280px
}

.loc-m {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #e8f4f8, #d0f0ec);
    border-radius: 28px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 40px rgba(45, 49, 66, .1);
    border: 2px dashed rgba(78, 205, 196, .4);

    overflow: hidden;
}

.mhint {
    width: 100%;
    height: 100%;
    margin: 0;
}

.mhint iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.micon {
    font-size: 3.5rem;
    animation: floatY 3s ease-in-out infinite
}

.mlbl {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: var(--s);
    font-weight: 600
}

.mhint {
    font-size: .82rem;
    color: #6b7094
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--dk);
    border: 1.5px solid rgba(78, 205, 196, .25);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .2s
}

.chip:hover {
    transform: translateY(-2px)
}

/* ── FOOTER ── */
footer {
    background: var(--dk);
    padding: 60px 6% 36px;
    position: relative;
    overflow: hidden
}

.fb1 {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--p);
    opacity: .06;
    top: 13px;
    right: -100px;
    pointer-events: none
}

.fb2 {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--s);
    opacity: .06;
    bottom: -60px;
    left: -60px;
    pointer-events: none
}

.fgrid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.flogo {
    color: var(--wh);
    margin-bottom: 16px
}

.fdesc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 300px
}

.fcol h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wh);
    margin-bottom: 18px
}

.fcol ul {
    list-style: none
}

.fcol ul li {
    margin-bottom: 10px
}

.fcol ul li a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s
}

.fcol ul li a:hover {
    color: var(--s)
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 22px
}

.soc {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    color: var(--wh);
    border: 1.5px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
    transition: transform .2s, background .2s
}

@media (hover: hover) and (pointer: fine) {
    .soc:hover {
        transform: translateY(-3px);
        background: var(--p);
        border-color: var(--p)
    }
}

.fbot {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.fcp {
    font-size: .85rem;
    color: rgba(255, 255, 255, .38)
}

.fdots {
    display: flex;
    gap: 8px
}

.fdots span {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
    nav {
        padding: 0 5%;
        overflow: visible;
    }

    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 90px 5% 0
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-sub {
        font-size: 1rem
    }

    .b1 {
        width: 260px;
        height: 260px;
        right: -60px
    }

    .b2 {
        width: 180px;
        height: 180px
    }

    .b3 {
        display: none
    }

    .services,
    .why,
    .loc {
        padding: 70px 5% 80px
    }

    .cards {
        grid-template-columns: 1fr
    }

    .wgrid {
        grid-template-columns: 1fr 1fr
    }

    .loc-in {
        flex-direction: column
    }

    .fgrid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .fbot {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:480px) {
    .wgrid {
        grid-template-columns: 1fr
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start
    }
}

/* ── DIMOTIKO PAGE ── */
.svc-hero {
    min-height: 78vh;
    background: linear-gradient(135deg, #c4e2e8 0%, #eafffe 50%, #d9e6ea 100%);
    display: flex;
    align-items: center;
    padding: 110px 6% 90px;
    position: relative;
    overflow: visible;
}

.svc-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 56px;
}

.svc-hero-text {
    flex: 1;
    min-width: 0;
}

.svc-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--s);
    text-decoration: none;
    margin-bottom: 26px;
    transition: gap .2s, color .2s;
}

.svc-back:hover {
    color: var(--p);
    gap: 11px;
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wh);
    border: 2px solid var(--p);
    border-radius: 50px;
    padding: 7px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 22px;
    box-shadow: 0 4px 14px rgba(69, 196, 222, .18);
}

.svc-badge svg {
    width: 16px;
    height: 16px;
}

.svc-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dk);
    margin-bottom: 20px;
}

.svc-hero h1 span {
    background: var(--p);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-hero-desc {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #5a5f7a;
    max-width: 520px;
    margin-bottom: 38px;
}

.svc-hero-photo {
    flex-shrink: 0;
    width: 380px;
    height: 360px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 49, 66, .15);
    animation: floatY 5s ease-in-out infinite;
}

.svc-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-hero-photo-ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(69, 196, 222, .15), rgba(11, 45, 114, .15));
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    color: var(--s);
    overflow: hidden;
    position: relative;
}

.svc-hero-photo-ph > .logo-box {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
}

.svc-hero-photo-ph > .logo-box img,
.svc-hero-photo-ph > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.svc-hero-photo-ph svg {
    width: 40px;
    height: 40px;
    opacity: .6;
}

/* ── INTRO ── */
.svc-intro {
    padding: 80px 6% 70px;
}

.svc-intro-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.svc-intro-inner .sec-sub {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── FEATURES ── */
.svc-features {
    padding: 0 6% 90px;
}

.feat-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}

.feat-card {
    background: var(--bg);
    border-radius: 25px;
    padding: 34px 28px;
    box-shadow: 0 4px 24px rgba(45, 49, 66, .07);
    transition: transform .25s, box-shadow .25s;
    border: 1.5px solid transparent;
}

.feat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 44px rgba(45, 49, 66, .12);
    border-color: rgba(69, 196, 222, .2);
}

.feat-card .ci {
    margin-bottom: 18px;
}

.feat-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--dk);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: .92rem;
    color: #6b7094;
    line-height: 1.7;
}


.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .svc-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .temp-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .svc-hero-photo {
        width: 100%;
        height: 260px;
        animation: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gp1,
    .gp2,
    .gp3,
    .gp4,
    .gp5 {
        grid-column: auto;
        grid-row: auto;
        height: 190px;
    }

    .after-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-strip {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
}

@media (max-width: 600px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gp1,
    .gp2,
    .gp3,
    .gp4,
    .gp5 {
        height: 170px;
    }
}
