/* Outfit font handled by Google Fonts link in HTML */

/* inter-300 - greek_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/inter-v20-greek_latin-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - greek_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/inter-v20-greek_latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - greek_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/inter-v20-greek_latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-800 - greek_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('assets/fonts/inter-v20-greek_latin-800.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* =========================================
   1. VARIABLES & RESET (Light/Dark Mode)
   ========================================= */
:root {
    --bg-main: #0f1113;
    --bg-secondary: #16191d;
    --text-main: #f8f9fa;
    --text-muted: #94a3b8;
    --accent-blue: #006989;
    --accent-glow: 0 0 30px rgba(0, 105, 137, 0.4);
    --accent-gradient: linear-gradient(135deg, #006989 0%, #004d66 100%);
    --glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(15, 17, 19, 0.85);
}

[data-theme="light"] {
    --bg-main: #EAEBED;
    --bg-secondary: #ffffff;
    --text-main: #1a1e21;
    --text-muted: #676767;
    --glass: rgba(0, 0, 0, 0.03);
    --border-glass: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.85);
}

/* Αποτρέπει το flash των animations κατά το resize */
.resize-animation-stopper * {
    transition: none !important;
    animation: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: clip;
    font-family: 'Inter';
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
    scroll-behavior: smooth;
}

body {
    background-image:
        linear-gradient(rgba(128, 128, 128, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 128, 128, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


main {
    flex: 1;
}


footer {
    margin-top: auto;
    background: var(--bg-secondary);
    padding: 6rem 0 10rem;
    border-top: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 105, 137, 0.05), transparent 70%);
    pointer-events: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: 0.4s ease;
    color: inherit;
}

/* =========================================
   2. MAIN SITE LAYOUT & TYPOGRAPHY
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 2rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

h1,
h2,
h3,
h4,
h1 *,
h2 *,
h3 *,
h4 * {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.highlight {
    color: inherit;
    text-shadow: none;
}

.tagline {
    color: var(--accent-blue);
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 105, 137, 0.4);
}

.btn-outline {
    border: 1px solid var(--accent-blue);
    background: transparent;
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: white;
}

.full-width {
    width: 100%;
}

/* =========================================
   3. NAVIGATION & MODERN SWITCHES
   ========================================= */
/* =========================================
   3. NAVIGATION (SPLIT BRANDING & ISLAND)
   ========================================= */

/* Top Branding (Steady) */
.top-branding {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
    /* Allows scrolling through the branding area */
}

.top-branding .logo,
.top-branding .top-switches {
    pointer-events: auto;
    /* Re-enable for interactive items */
}

.top-branding .logo .nav-logo-img {
    height: 40px;
    /* Bigger Logo */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.top-branding .switch-container {
    transform: none;
    /* Bigger Language switch */
}

/* Bottom Island Nav (Interaction) */
.bottom-island-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 95vw;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 0.6rem 1.4rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    /* Stronger shadow */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .bottom-island-nav {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    /* Stick out more in dark theme */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.05);
}


.bottom-island-nav .nav-container {
    padding: 0;
}

.bottom-island-nav .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bottom-island-nav .nav-links a:not(.btn) {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bottom-island-nav .nav-links a:not(.btn):hover {
    color: var(--accent-blue);
}

.bottom-island-nav .nav-icon-link {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
}

.bottom-island-nav .btn-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
}

/* Theme Switcher in the Island */
.bottom-island-nav .switch-container {
    border-left: 1px solid var(--border-glass);
    padding-left: 1rem;
    display: flex;
    align-items: center;
}


/* Cleaning up old animation artifacts */
nav::after {
    display: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}



.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-blue);
}

.nav-links .btn {
    background: var(--text-main);
    color: var(--bg-main);
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 800;
    text-transform: capitalize;
}

.nav-links .btn:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Switches Container */
.switch-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.border-right {
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-glass);
}

.lang-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.lang-label.active {
    color: var(--accent-blue);
}

/* Toggle Switch Base */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--glass);
    border: 1px solid var(--border-glass);
    border-radius: 34px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    border-radius: 50%;
    transition: .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

input:checked+.slider {
    border-color: var(--accent-blue);
    background-color: rgba(0, 105, 137, 0.1);
}

input:checked+.slider:before {
    transform: translateX(24px);
    background-color: var(--accent-blue);
}

/* Theme Icons specific */
.theme-switch .slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px;
}

.theme-switch .icon-sun {
    color: #f39c12;
    font-size: 11px;
    z-index: 1;
}

.theme-switch .icon-moon {
    color: #f1c40f;
    font-size: 11px;
    z-index: 1;
}

/* =========================================
   4. ANIMATIONS (Keyframes)
   ========================================= */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseBlob {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

/* =========================================
   5. SECTIONS (Hero, About, Services)
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.04) 0%, transparent 70%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 198, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    z-index: 10;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .tagline {
    display: inline-block;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 3.5rem;
    letter-spacing: -0.03em;
}

.typewriter {
    color: var(--accent-blue);
    border-right: 3px solid var(--accent-blue);
    padding-right: 8px;
    animation: blink 0.7s step-end infinite;
    display: inline-block;
    min-height: 1.1em;
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-blue)
    }
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero entrance animations */
.hero .tagline {
    animation: heroFadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

.hero h1 {
    animation: heroFadeInUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
}

.hero-buttons {
    animation: heroFadeInUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.7s both;
}


.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}


/* Trust Bar */


.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.trust-item i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--accent-blue));
}

.blob-bg {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 105, 137, 0.1), transparent 70%);
    filter: blur(60px);
    z-index: -2;
    animation: pulseBlob 10s ease-in-out infinite;
}

/* About / Team / Stats */
.about-block {
    margin-bottom: 5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-block p {
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.team-member {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.team-member:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 2px solid var(--accent-blue);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h4 {
    font-size: 1.4rem;
    margin: 0.6rem 0 0.2rem;
}

.team-member p {
    margin: 0;
    color: var(--text-muted);
    font-weight: 500;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    perspective: 1200px;
}

@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}





.philosophy-card.hidden {
    transform: translateY(120px) scale(0.9);
    opacity: 0;
}

.philosophy-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.03);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    cursor: pointer;
}

.philosophy-card:active {
    transform: scale(0.97) translateY(-2px);
    transition: transform 0.1s ease;
}



.philosophy-card.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease, border-color 0.6s ease, opacity 0.8s ease;
}

.philosophy-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 105, 137, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.philosophy-card>* {
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
    transition: transform 0.6s ease;
}

.philosophy-card.show.hover-3d-anim:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateY(-12px);
    box-shadow: 20px 30px 50px rgba(0, 105, 137, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: var(--accent-blue);
    transition-delay: 0s !important;
}


.philosophy-card.show.hover-3d-anim:hover::after {
    opacity: 1;
}

.philosophy-card.show.hover-3d-anim:hover>* {
    transform: translateZ(40px);
}

.highlight-icon {
    font-size: 2.8rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(0, 105, 137, 0.4));
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    transition: 0.4s;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 105, 137, 0.1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: 0.4s;
}

.stat-card:hover .stat-icon {
    color: var(--accent-blue);
    transform: scale(1.2);
}

.gradient-text {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0.5rem 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--glass);
    border-radius: 10px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-blue);
    border-radius: 10px;
    transition: width 1.5s ease-out;
}

.progress-fill.animate {
    width: 98%;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-link-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.card {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hover-anim:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 105, 137, 0.1);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    transition: 0.4s;
    display: inline-block;
}

.hover-anim:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-link-card .learn-more {
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link-card:hover .learn-more {
    gap: 15px;
}

/* Sticky Scroll Process Timeline */
.process-scroll-wrapper {
    position: relative;
    height: 400vh;
}

.process-sticky-container {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: position 0.3s ease;
}

/* DELETED .releasing state to remove flashy transitions */



/* Timeline Finished States */
.process-scroll-wrapper.timeline-finished {
    height: auto !important;
    padding: 100px 0;
}

.timeline-finished .process-sticky-container {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    transition: none !important;
}



.process-section {
    width: 100%;
    margin: 0 !important;
}

.process-track-container {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 4px;
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 0;
    transition: opacity 0.4s ease;
}

.timeline-finished .process-track-container {
    display: block;
    top: 50%;
    /* Match horizontal animated position exactly */
    opacity: 0.6;
}




.process-track-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--border-glass);
    border-radius: 4px;
}

.process-track-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-blue);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.timeline-finished .process-track-fill {
    width: 100% !important;
}


.process-steps {
    display: flex;
    gap: 2rem;
    width: 100%;
    will-change: transform;
    justify-content: center;
    align-items: stretch;
    /* Forces equal height */
    position: relative;
    transition: transform 0.8s ease;
}

.timeline-finished .process-steps {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens while staying linear on desktop */
    justify-content: center;
    transform: none !important;
    gap: 2rem;
    transition: none !important;
}



.step-card {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.step-card.process-step-card {
    flex: 1 1 0;
    /* Forces equal exact width regardless of inner text length */
    min-width: 0;
    opacity: 1;
    transform: scale(0.95);
    filter: grayscale(80%) brightness(0.6);
}

.step-card.process-step-card.active-focus,
.timeline-finished .step-card.process-step-card {
    opacity: 1;
    transform: scale(1.05);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 45px rgba(0, 105, 137, 0.2);
    filter: grayscale(0%) brightness(1);
    z-index: 2;
}

.step-card.process-step-card.active-focus .step-number,
.timeline-finished .step-card.process-step-card .step-number {
    color: rgba(0, 105, 137, 0.15);
}

@media(max-width: 1024px) {
    .process-steps {
        width: max-content;
        padding: 2rem 5vw;
    }

    .step-card.process-step-card {
        width: clamp(280px, 60vw, 320px);
        flex: none;
    }
}

.step-number {
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 6rem;
    font-weight: 800;
    color: var(--glass);
    z-index: 0;
    transition: color 0.4s;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    position: relative;
    z-index: 1;
}

.cta-container {
    text-align: center;
    margin: 4rem;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.info-list li {
    margin: 1rem 0;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: center;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: 0.3s;
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 105, 137, 0.1);
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-brand p {
    font-size: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 105, 137, 0.3);
}

.credits {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-glass);
}

.credits p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.legal-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-blue);
}

.seo-footer-text {
    display: none;
    /* Removed as requested */
}

/* =========================================
   6. UTILITIES & MODAL
   ========================================= */
/* Smooth Reveal Animation */
.hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(4px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background: var(--bg-secondary);
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--accent-blue);
}

.close-btn:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 4px;
}

.input-row {
    display: flex;
    gap: 1rem;
}

.input-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

/* =========================================
   PRICING TABLES (Desktop - 3 Στήλες)
   ΑΥΤΟ ΠΡΕΠΕΙ ΝΑ ΕΙΝΑΙ ΕΞΩ ΑΠΟ ΤΟ MEDIA QUERY
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 6rem;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 4rem 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    background: rgba(0, 105, 137, 0.05);
    border: 2px solid var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0, 105, 137, 0.15);
    z-index: 2;
}

.pricing-card.popular:hover {
    box-shadow: 0 30px 70px rgba(0, 105, 137, 0.25);
}

.popular-badge {
    position: absolute;
    top: 25px;
    right: -40px;
    background: var(--accent-blue);
    color: white;
    padding: 10px 50px;
    font-size: 0.8rem;
    font-weight: 900;
    transform: rotate(45deg);
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-icon {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 15px rgba(0, 105, 137, 0.3));
}

.pricing-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.pricing-card .price {
    font-family: "Outfit", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1.2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent-blue);
    background: var(--glass);
    padding: 6px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* =========================================
   7. MOBILE FULL-SCREEN MENU & RESPONSIVE
   ========================================= */
.mobile-menu-icon {
    display: none;
    position: relative;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 9999;
    transition: color 0.3s;
}

.mobile-menu-icon:hover {
    color: var(--accent-blue);
}

/* Premium Full-Screen Overlay (Hidden by default) */
.mobile-overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 17, 19, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: none;
    /* Changed from flex to none */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    clip-path: circle(0% at 50% 100%);
    transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

[data-theme="light"] .mobile-overlay-menu {
    background: rgba(234, 235, 237, 0.95);
}

.mobile-overlay-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at 50% 100%);
}

.mobile-overlay-menu .overlay-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-overlay-menu li {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-overlay-menu.active li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-overlay-menu a:not(.overlay-btn) {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
    text-decoration: none;
}

.mobile-overlay-menu a.overlay-btn {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1rem 3.5rem;
    border-radius: 50px;
    background: var(--accent-gradient);
    color: white;
    font-weight: 700;
    display: inline-block;
}

.mobile-view-indicator {
    display: none;
    position: absolute;
    top: 105px;
    left: 6%;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    z-index: 900;
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.portfolio-card {
    display: block;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0, 105, 137, 0.15);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
    /* Κινηματογραφικό Zoom στην εικόνα */
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin: 0;
}

/* mobile-only elements hidden on desktop via media query below */
.mobile-menu-icon {
    display: none;
}

.mobile-only {
    display: none;
}

@media (max-width: 1150px) {
    .mobile-view-indicator {
        display: none;
    }

    .top-branding {
        padding: 1.2rem 5%;
    }

    .top-branding .switch-container {
        transform: scale(1.15);
    }


    .top-branding .logo .nav-logo-img {
        height: 52px;
        /* Increased from 38px */
    }

    /* Full Width Bottom Nav Bar */
    .bottom-island-nav {
        bottom: 0 !important;
        width: 100vw !important;
        max-width: 100% !important;
        padding: 1rem 1.5rem !important;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
        /* iPhone safe area */
        z-index: 10001;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 24px 24px 0 0 !important;
        /* Flat on bottom */
        background: rgba(20, 20, 25, 0.9) !important;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4) !important;
    }

    [data-theme="light"] .bottom-island-nav {
        background: rgba(255, 255, 255, 0.95) !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05) !important;
    }

    .bottom-island-nav .nav-container {
        width: 100%;
    }

    .bottom-island-nav .nav-links {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }

    /* ============================================
       MOBILE NAV ORDER: Home(1) | Contact(2) | Theme(3) | Hamburger(4)
       HTML structure: li[1]=home li[2]=H Etaireia li[3]=Ypiresies li[4]=switch li[5]=contact-btn li[6]=hamburger(added by JS)
       ============================================ */

    /* 1. Home icon - always visible, order 1 */
    .bottom-island-nav .nav-links li:nth-child(1) {
        order: 1;
        display: flex !important;
    }

    /* 2. Hide text links (Η Εταιρεία, Υπηρεσίες) */
    .bottom-island-nav .nav-links li:nth-child(2),
    .bottom-island-nav .nav-links li:nth-child(3),
    .bottom-island-nav .nav-links li.desktop-only {
        display: none !important;
    }

    /* 3. Contact button (5th child) - show as icon, order 2 */
    .bottom-island-nav .nav-links li:nth-child(5) {
        order: 2;
        display: flex !important;
    }

    /* Replace contact button text with icon on mobile */
    .bottom-island-nav .nav-links li:nth-child(5) .btn-primary {
        font-size: 0;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        color: var(--text-main);
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: transform 0.2s ease;
    }

    .bottom-island-nav .nav-links li:nth-child(5) .btn-primary:active {
        transform: scale(0.92);
        background: transparent;
        box-shadow: none;
    }

    .bottom-island-nav .nav-links li:nth-child(5) .btn-primary::after {
        content: "\f0e0";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 1.4rem;
        color: var(--text-main);
    }

    /* 4. Theme switch (4th child) - always visible, order 3 */
    .bottom-island-nav .nav-links li.switch-container,
    .bottom-island-nav .nav-links li:nth-child(4) {
        order: 3;
        display: flex !important;
    }

    /* 5. Hamburger menu (added by JS as .mobile-only) - visible, order 4 */
    .bottom-island-nav .nav-links li.mobile-only {
        order: 4;
        display: flex !important;
    }

    .mobile-menu-icon {
        display: flex !important;
        font-size: 1.5rem;
        color: var(--text-main);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
    }

    /* Uniform Icon Sizing */
    .bottom-island-nav .nav-icon-link i,
    .mobile-menu-icon i,
    .bottom-island-nav .nav-links .btn-primary::before {
        font-size: 1.4rem !important;
        color: var(--text-main);
    }

    .bottom-island-nav .nav-icon-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }

    /* Explicit Mobile-Friendly Theme Switcher */
    .bottom-island-nav .nav-links .switch-container {
        padding: 0;
        border: none;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottom-island-nav .switch {
        width: 66px !important;
        height: 36px !important;
        margin: 0 !important;
        border-radius: 36px !important;
    }

    .bottom-island-nav .slider {
        background-color: var(--glass) !important;
        border-radius: 36px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .bottom-island-nav .slider:before {
        display: block !important;
        height: 28px !important;
        width: 28px !important;
        left: 3px !important;
        bottom: 3px !important;
        background-color: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        z-index: 5 !important;
    }

    .bottom-island-nav input:checked+.slider:before {
        transform: translateX(30px) !important;
        background-color: #1a1c23 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
    }

    .bottom-island-nav .icon-sun,
    .bottom-island-nav .icon-moon {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 0.9rem !important;
        z-index: 10 !important;
        transition: color 0.3s ease !important;
        margin: 0 !important;
    }

    .bottom-island-nav .icon-sun {
        left: 10px !important;
        color: #f39c12 !important;
    }

    .bottom-island-nav .icon-moon {
        right: 11px !important;
        left: auto !important;
        color: rgba(255, 255, 255, 0.3) !important;
    }

    [data-theme="dark"] .bottom-island-nav .icon-sun {
        color: rgba(255, 255, 255, 0.3) !important;
    }

    [data-theme="dark"] .bottom-island-nav .icon-moon {
        color: #f1c40f !important;
    }




    .section {
        padding: 4rem 0;
    }

    .hero-container,
    .contact-wrapper,
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding-top: 160px;
        text-align: center;
        min-height: 90vh;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-content h1 {
        font-size: 3.3rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -1.5px;
        font-weight: 900;
    }

    .hero-content p,
    .hero-desc {
        display: none;
    }

    .hero-inquiry-btn {
        display: inline-block !important;
        background: var(--glass);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid var(--border-glass);
        color: var(--text-main);
        padding: 1.4rem 1.8rem;
        border-radius: 20px;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.4;
        margin-top: 1rem;
        margin-bottom: 2.5rem;
        text-align: center;
        width: 100%;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        animation: pulse-glow 3s infinite;
    }

    @keyframes pulse-glow {
        0% {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
        }

        50% {
            box-shadow: 0 15px 45px rgba(0, 198, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
        }

        100% {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
        }
    }

    .hero-inquiry-btn i {
        margin-left: 10px;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        border-radius: 50px;
        box-shadow: 0 15px 30px rgba(0, 198, 255, 0.2);
    }

    [data-theme="light"] .hero-buttons .btn {
        box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
    }

    .contact-form .btn-primary {
        border-radius: 50px;
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .blob-bg {
        width: 150vw;
        height: 50vh;
        top: -10%;
        left: -25vw;
        opacity: 0.9;
        filter: blur(120px);
        transform: translateZ(0);
        /* Hardware acceleration */
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
        text-align: center;
    }

    .footer-brand,
    .footer-col:last-child {
        grid-column: span 2;
        text-align: center;
    }


    .footer-brand h3 {
        margin-bottom: 0.8rem;
    }

    .footer-brand p {
        margin: 0 auto 1rem;
    }

    .footer-col h4 {
        margin-bottom: 0.8rem;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-socials {
        justify-content: center;
    }

    .credits {
        padding-top: 2rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    /* Unite Contact Form and Footer Visually into a Solid Bottom Card */
    #contact.section {
        padding-bottom: 0 !important;
        padding-top: 5rem !important;
        background: rgba(20, 20, 25, 0.7);
        border-radius: 40px 40px 0 0;
        margin-top: 4rem;
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }

    [data-theme="light"] #contact.section {
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.06);
        border-top: 1px solid rgba(255, 255, 255, 1);
    }

    .contact-wrapper {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 1rem !important;
        gap: 2rem !important;
    }

    /* Left-align the heading block on mobile */
    .contact-wrapper .contact-info {
        text-align: left;
    }

    .contact-wrapper h2 {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
        text-align: left;
    }

    .contact-wrapper .contact-info > p {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    /* Redesign info-list as horizontal pill cards on mobile */
    .contact-wrapper .info-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .contact-wrapper .info-list li {
        flex: 1 1 auto;
        min-width: 0;
        background: var(--glass);
        border: 1px solid var(--border-glass);
        border-radius: 12px;
        padding: 0.6rem 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        color: var(--text-muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }

    .contact-wrapper .info-list li i {
        color: var(--accent-blue);
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .contact-wrapper .info-list li a {
        color: var(--text-muted);
    }


    footer {
        border-top: none !important;
        margin-top: 0 !important;
        padding-top: 1.5rem !important;
        padding-bottom: 9rem !important;
        /* Space for the bottom island */
        background: transparent !important;
    }



    .services-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr !important;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .input-row {
        flex-direction: column;
        gap: 0;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }


    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    /* ==========================================
       WORLD CLASS MOBILE AESTHETICS
       ========================================== */
    .section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .tagline {
        letter-spacing: 4px;
        font-size: 0.85rem;
        opacity: 0.9;
        margin-bottom: 1rem;
        display: inline-block;
    }

    /* Premium Glass Cards for Mobile */
    .philosophy-card,
    .card,
    .pricing-card,
    .step-card {
        padding: 2.5rem 2rem;
        border-radius: 28px;
        background: rgba(20, 20, 25, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        margin-bottom: 0;
    }

    [data-theme="light"] .philosophy-card,
    [data-theme="light"] .card,
    [data-theme="light"] .pricing-card,
    [data-theme="light"] .step-card {
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    /* Refined Typography inside Cards */
    .card h3,
    .philosophy-card h3,
    .pricing-card h3,
    .step-card h3 {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
        margin-bottom: 1rem;
        font-weight: 800;
    }

    .card p,
    .philosophy-card p,
    .step-card p {
        font-size: 1.05rem;
        line-height: 1.6;
        opacity: 0.75;
    }

    /* Glowing Icons */
    .icon-box,
    .highlight-icon,
    .pricing-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        filter: drop-shadow(0 10px 15px rgba(0, 198, 255, 0.3));
    }

    [data-theme="light"] .icon-box,
    [data-theme="light"] .highlight-icon,
    [data-theme="light"] .pricing-icon {
        filter: drop-shadow(0 10px 15px rgba(0, 102, 255, 0.2));
    }

    .philosophy-grid {
        gap: 1.5rem;
    }

    /* Disable Process Sticky Timeline, use Native Horizontal Scroll */
    .process-scroll-wrapper {
        height: auto !important;
        margin-top: 6rem;
    }

    .process-sticky-container {
        position: relative;
        min-height: auto;
    }

    .process-section {
        width: 100vw;
        max-width: 100%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        overflow: hidden;
        /* CRITICAL: prevents body horizontal scrolling */
    }

    .process-steps {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        padding-left: 5vw;
        padding-right: 5vw;
        width: 100%;
        justify-content: flex-start;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .process-steps::-webkit-scrollbar {
        display: none;
    }

    .step-card.process-step-card {
        scroll-snap-align: center;
        min-width: 85vw;
        opacity: 1 !important;
        transform: scale(1) !important;
        filter: none !important;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .process-track-container {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .swipe-indicator {
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--text-muted);
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-top: 1.5rem;
        animation: swipePulse 2s infinite ease-in-out;
    }

    @keyframes swipePulse {
        0% {
            transform: translateX(-5px);
            opacity: 0.5;
            color: var(--text-muted);
        }

        50% {
            transform: translateX(5px);
            opacity: 1;
            color: var(--text-color);
        }

        100% {
            transform: translateX(-5px);
            opacity: 0.5;
            color: var(--text-muted);
        }
    }
}

/* ==========================================
   GLOBAL UTILITIES
   ========================================== */
.mobile-only {
    display: none;
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 320px;
    background: rgba(20, 20, 25, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    padding-top: 2px;
}

.cookie-text h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.cookie-text p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cookie-text a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
}

.btn-cookie {
    flex: 1;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-cookie.accept {
    background: var(--accent-blue);
    color: white;
}

.btn-cookie.accept:hover {
    filter: brightness(1.1);
}

.btn-cookie.reject {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

[data-theme="light"] .btn-cookie.reject {
    background: rgba(0, 0, 0, 0.05);
}

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .btn-cookie.reject:hover {
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 100px;
        left: 50%;
        transform: translate(-50%, 150%);
        width: 90vw;
    }

    .cookie-banner.show {
        transform: translate(-50%, 0);
    }
}

/* --- COOKIE BANNER OVERRIDES --- */
.btn-cookie.accept {
    background: linear-gradient(135deg, var(--accent-blue), #8A2BE2) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4) !important;
    font-weight: 700 !important;
    transform: scale(1);
    transition: all 0.2s ease !important;
}

.btn-cookie.accept:hover {
    filter: brightness(1.15) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6) !important;
}

.btn-cookie.reject {
    background: transparent !important;
    color: var(--text-muted) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-theme="light"] .btn-cookie.reject {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #666 !important;
}

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-color) !important;
}

/* ==========================================
   EXTRA SMALL MOBILE REFINEMENTS
   ========================================== */
@media (max-width: 480px) {
    .bottom-island-nav {
        bottom: 15px;
        padding: 0.8rem 1.4rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .top-branding .logo .nav-logo-img {
        height: 48px;
    }

    .top-branding .switch-container {
        transform: scale(1.15);
    }
}

.top-branding .logo .nav-logo-img {
    height: 48px;
}

.top-branding .switch-container {
    transform: scale(1.15);
}