/* ============================================================
   MISELIUM — sland.css
   Miselium-specific overrides on top of Sland template
   ============================================================ */

/* ---------- PRIMARY COLOR OVERRIDE ---------- */
.home-three {
    --primary-color: #4f46e5;
}

/* ---------- MISELIUM LOGO ---------- */
.miselium-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    margin-right: 8px;
    vertical-align: middle;
}

.miselium-logo-text {
    font-weight: 700;
    font-size: 1.35rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    vertical-align: middle;
}

.miselium-logo-mark--footer {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.miselium-logo-text--footer {
    color: #fff;
    font-size: 1.2rem;
}

/* ---------- SMOOTH SCROLL ---------- */
html {
    scroll-behavior: smooth;
}

/* ---------- NAVIGATION ACTIVE STATE ---------- */
.main-header .navigation > li > a {
    text-transform: none;
}

/* ---------- LANGUAGE SWITCHER ---------- */
.lang-switcher {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.lang-item {
    color: #5b5675;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 4px;
    transition: 0.2s;
}

.lang-item:hover {
    color: #4f46e5;
}

.lang-item.active {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.08);
}

.lang-sep {
    color: #ccc;
    margin: 0 4px;
    font-weight: 400;
}

/* ---------- HERO BUTTONS ---------- */
.hero-btns .theme-btn + .theme-btn {
    margin-left: 15px;
}

@media (max-width: 575px) {
    .hero-btns .theme-btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    .hero-btns .theme-btn + .theme-btn {
        margin-left: 0;
    }
}

/* ---------- SERVICES 4-COLUMN GRID ---------- */
.solutions-section-three .col-xl-3 .solution-item-three {
    padding: 30px 25px;
}

/* ---------- PRODUCT CARDS (Ürünlerimiz) ---------- */
.product-card {
    background: #fff;
    border-radius: 7px;
    padding: 35px 30px;
    margin-bottom: 30px;
    min-height: 280px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.12);
    transform: translateY(-3px);
}

.product-card i {
    font-size: 36px;
    color: #4f46e5;
    margin-bottom: 18px;
    display: block;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.product-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5b5675;
}

.product-card .theme-btn {
    font-size: 14px;
    padding: 8px 22px;
}

/* ---------- COUNTER / STATS ---------- */
.success-item {
    margin-bottom: 30px;
}

.success-item .count-text {
    font-size: 42px;
    font-weight: 700;
    color: #4f46e5;
    font-family: 'Poppins', sans-serif;
}

.success-item span {
    font-size: 32px;
    font-weight: 700;
    color: #4f46e5;
    font-family: 'Poppins', sans-serif;
}

.success-item p {
    font-size: 16px;
    color: #5b5675;
    margin-top: 5px;
}

/* ---------- PROCESS STEPS (Çalışma Sürecimiz) ---------- */
.process-steps-wrap {
    counter-reset: process-counter;
}

.process-step {
    position: relative;
    counter-increment: process-counter;
}

.process-step::before {
    content: counter(process-counter);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(79, 70, 229, 0.07);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

/* ---------- REFERENCE CARDS (Referanslar) ---------- */
.reference-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 35px 20px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.reference-card:hover {
    background: rgba(255, 255, 255, 0.18);
}

.reference-card i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: block;
}

.reference-card img {
    max-height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.reference-card h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.reference-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ---------- CALENDAR CTA (İletişim) ---------- */
.calendar-cta {
    font-size: 18px !important;
    padding: 15px 40px !important;
}

/* ---------- FOOTER — holding page (no CTA banner) ---------- */
.footer-section.footer-no-cta {
    padding-top: 80px;
    padding-bottom: 10px;
}

/* ---------- FOOTER LINK COLOR OVERRIDES ---------- */
.footer-section a:hover {
    color: #7c3aed;
}

.copyright-area a {
    color: #7c3aed;
}

/* ---------- HERO VIDEO ---------- */
.hero-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ---------- ICON SIZE OVERRIDES (Remix Icon — smaller, modern) ---------- */
.solution-item-three > i {
    height: 60px;
    width: 60px;
    font-size: 26px;
    line-height: 60px;
    margin-bottom: 30px;
}

.solution-item-three > i:after {
    left: 7px;
    top: 7px;
}

.solution-item-three h3 {
    font-size: 22px;
}

.product-card i {
    font-size: 28px;
    margin-bottom: 14px;
}

.reference-card i {
    font-size: 30px;
    margin-bottom: 12px;
}

.process-step i {
    font-size: 24px;
}

/* ---------- CONTACT FORM NOTE ---------- */
.contact-form-two .text-muted {
    color: #9ca3af !important;
}

/* ---------- TECH LOGO MARQUEE ---------- */
.tech-marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.tech-marquee-wrapper::before,
.tech-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.tech-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.tech-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.tech-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.tech-marquee-track.reverse {
    animation: marqueeScrollReverse 40s linear infinite;
}

.tech-marquee-track:hover {
    animation-play-state: paused;
}

.tech-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    transition: 0.3s;
    filter: grayscale(80%) opacity(0.6);
}

.tech-marquee-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

.tech-marquee-item img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.tech-marquee-row {
    margin-bottom: 20px;
}

.tech-marquee-row:last-child {
    margin-bottom: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ---------- MYCELIUM VISUAL (Marka Hikayesi) ---------- */
.mycelium-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mycelium-svg {
    width: 100%;
    max-width: 480px;
    height: auto;
}

@media (max-width: 991px) {
    .mycelium-visual {
        margin-bottom: 40px;
    }
    .mycelium-svg {
        max-width: 360px;
    }
}

/* ---------- ECOSYSTEM CARDS (Holding page) ---------- */
.eco-card {
    background: #fff;
    border-radius: 7px;
    padding: 35px 30px;
    margin-bottom: 30px;
    min-height: 380px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.eco-card:hover {
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.12);
    transform: translateY(-3px);
}

.eco-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.eco-card-header i {
    font-size: 32px;
    color: #4f46e5;
}

.eco-card-tag {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
    letter-spacing: 0.3px;
}

.eco-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.eco-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5b5675;
    margin-bottom: 16px;
}

.eco-card .eco-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.eco-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 14px;
    color: #5b5675;
}

.eco-feature-list li i {
    color: #4f46e5;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.eco-card .theme-btn {
    font-size: 14px;
    padding: 8px 22px;
    align-self: flex-start;
}

/* ---------- UTILITY CLASSES (extracted from inline styles) ---------- */
.text-primary-color {
    color: var(--primary-color);
}

.story-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #5b5675;
}

.story-metaphor {
    font-size: 15px;
    line-height: 1.8;
    color: #5b5675;
    font-style: italic;
}

.hero-slogan {
    font-size: 14px;
    font-weight: 600;
    color: #4f46e5;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.form-note {
    font-size: 0.9rem;
}

/* ---------- SECTION BACKGROUNDS ---------- */
.services-bg {
    background-image: url(/assets/images/shapes/solutions-bg-dots.png);
}

.references-bg {
    background-image: url(/assets/images/feedbacks/feedback-bg.png);
}

/* ---------- CORPORATE PAGE (Kurumsal Bilgiler) ---------- */
.corporate-card {
    background: #fff;
    border-radius: 7px;
    padding: 35px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.corporate-card:hover {
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.12);
    transform: translateY(-3px);
}

.corporate-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.corporate-card-icon i {
    font-size: 26px;
    color: #4f46e5;
}

.corporate-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--heading-color);
}

.corporate-card p.corporate-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #5b5675;
    margin-bottom: 0;
}

.corporate-table {
    width: 100%;
    border-collapse: collapse;
}

.corporate-table tr {
    border-bottom: 1px solid #f0f0f5;
}

.corporate-table tr:last-child {
    border-bottom: none;
}

.corporate-table td {
    padding: 12px 0;
    font-size: 14px;
    color: #333;
    vertical-align: top;
    line-height: 1.6;
}

.corporate-table .corporate-label {
    font-weight: 600;
    color: #5b5675;
    white-space: nowrap;
    padding-right: 20px;
    width: 140px;
}

.corporate-table .corporate-iban {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #1a1a2e;
    font-weight: 600;
}

.corporate-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corporate-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f0f0f5;
}

.corporate-contact-list li:last-child {
    border-bottom: none;
}

.corporate-contact-list li i {
    font-size: 20px;
    color: #4f46e5;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.corporate-contact-list li a {
    color: #333;
    transition: 0.2s;
}

.corporate-contact-list li a:hover {
    color: #4f46e5;
}

/* ---------- PAGE BANNER ---------- */
.page-banner {
    background-color: #1a1a2e;
}

.page-banner .sub-title {
    color: rgba(255, 255, 255, 0.7);
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .corporate-table .corporate-label {
        width: auto;
        display: block;
        padding-right: 0;
        padding-bottom: 2px;
    }
    .corporate-table td {
        display: block;
        padding: 6px 0;
    }
    .corporate-table tr {
        padding: 8px 0;
        display: block;
        border-bottom: 1px solid #f0f0f5;
    }
    .page-banner h1 {
        font-size: 28px;
    }
}
