/* ============================================
   MESUT OTO HIDROLIK - ULTRA ANIMATION EDITION
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
    background: #fff;
    line-height: 1.6;
    cursor: default;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.moh-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0f0f23;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.moh-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.moh-loader-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.moh-loader-logo span { color: #e94560; }

.moh-loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.moh-loader-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    border-radius: 3px;
    animation: loaderFill 1.8s ease forwards;
}

@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.moh-scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #ff6b6b, #e94560);
    background-size: 200% 100%;
    z-index: 10001;
    width: 0%;
    transition: width 0.1s;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ============================================
   CUSTOM CURSOR GLOW
   ============================================ */
.moh-cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,69,96,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .moh-cursor-glow {
    opacity: 1;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.moh-backtop {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.moh-backtop.visible {
    opacity: 1;
    transform: translateY(0);
}

.moh-backtop:hover {
    border-color: #e94560;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(233,69,96,0.2);
}

.moh-backtop svg {
    width: 20px;
    height: 20px;
    fill: #1a1a2e;
    transition: fill 0.3s;
}

.moh-backtop:hover svg {
    fill: #e94560;
}

/* ============================================
   NAVBAR
   ============================================ */
.moh-navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.moh-navbar.scrolled {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    padding: 0.8rem 3rem;
}

.moh-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: transform 0.3s;
    position: relative;
}

.moh-logo:hover { transform: scale(1.02); }

.moh-logo span { color: #e94560; }

.moh-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.moh-nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.moh-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    width: 0; height: 2.5px;
    background: #e94560;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.moh-nav-links a:hover {
    color: #fff;
}

.moh-nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.moh-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.moh-mobile-menu span {
    display: block;
    width: 28px; height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.moh-mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.moh-mobile-menu.active span:nth-child(2) { opacity: 0; }
.moh-mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.moh-mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
}

.moh-mobile-nav.active { right: 0; }

.moh-mobile-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s, padding-left 0.3s;
}

.moh-mobile-nav a:hover {
    color: #e94560;
    padding-left: 10px;
}

/* ============================================
   HERO SECTION - ULTRA ANIMATED
   ============================================ */
.moh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 40%, #16213e 100%);
    overflow: hidden;
}

/* Floating geometric shapes */
.moh-hero-shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.moh-shape {
    position: absolute;
    opacity: 0.06;
    animation: shapeFloat linear infinite;
}

.moh-shape-1 {
    width: 80px; height: 80px;
    border: 2px solid #e94560;
    border-radius: 50%;
    top: 20%; left: 10%;
    animation-duration: 20s;
}

.moh-shape-2 {
    width: 120px; height: 120px;
    border: 2px solid #fff;
    transform: rotate(45deg);
    top: 60%; right: 15%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.moh-shape-3 {
    width: 60px; height: 60px;
    background: #e94560;
    border-radius: 50%;
    bottom: 30%; left: 20%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.moh-shape-4 {
    width: 100px; height: 100px;
    border: 2px solid rgba(255,255,255,0.3);
    top: 15%; right: 30%;
    animation-duration: 22s;
    animation-delay: -8s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.moh-shape-5 {
    width: 40px; height: 40px;
    background: rgba(233,69,96,0.3);
    border-radius: 8px;
    bottom: 20%; right: 25%;
    animation-duration: 15s;
    animation-delay: -3s;
    transform: rotate(15deg);
}

@keyframes shapeFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Grid background pattern */
.moh-hero-grid {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Particles */
.moh-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
}

.moh-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* Hero Content */
.moh-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.moh-hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.moh-hero-badge::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Typing effect title */
.moh-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    min-height: 1.2em;
}

.moh-hero h1 .type-text {
    background: linear-gradient(90deg, #e94560, #ff6b6b, #e94560);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.moh-hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 400;
}

.moh-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Magnetic Buttons */
.moh-btn {
    padding: 16px 42px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.moh-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.moh-btn:hover::before {
    width: 300px;
    height: 300px;
}

.moh-btn-primary {
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: #fff;
    box-shadow: 0 10px 40px rgba(233,69,96,0.35);
}

.moh-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(233,69,96,0.5);
}

.moh-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.moh-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

/* Scroll Indicator */
.moh-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.moh-scroll-indicator::before {
    content: '↓';
    color: rgba(255,255,255,0.5);
    font-size: 1.6rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.moh-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.moh-section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.moh-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 4px;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    border-radius: 2px;
}

.moh-section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.moh-about {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.moh-about::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(233,69,96,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.moh-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.moh-about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.moh-about-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.moh-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.moh-stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.moh-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.moh-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.moh-stat-card:hover::before {
    transform: scaleX(1);
}

.moh-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e94560;
    line-height: 1;
}

.moh-stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.moh-about-visual {
    position: relative;
}

.moh-about-visual-inner {
    background: linear-gradient(135deg, #1a1a3e, #16213e);
    border-radius: 24px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,26,62,0.3);
    transition: transform 0.4s ease;
}

.moh-about-visual-inner:hover {
    transform: translateY(-5px);
}

.moh-about-visual-inner::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(233,69,96,0.12) 0%, transparent 70%);
}

.moh-experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
}

.moh-exp-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: #e94560;
    line-height: 1;
}

.moh-exp-text {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.moh-about-quote {
    margin-top: 2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

/* ============================================
   SERVICES SECTION - 3D TILT CARDS
   ============================================ */
.moh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.moh-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transform-style: preserve-3d;
    will-change: transform;
}

.moh-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.moh-service-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(233,69,96,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.moh-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: rgba(233,69,96,0.15);
}

.moh-service-card:hover::before {
    transform: scaleX(1);
}

.moh-service-card:hover::after {
    opacity: 1;
}

.moh-service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(233,69,96,0.25);
    position: relative;
    z-index: 1;
}

.moh-service-card:hover .moh-service-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 35px rgba(233,69,96,0.4);
}

.moh-service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.moh-service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   PRODUCTS SECTION (DARK) - GLOW EFFECTS
   ============================================ */
.moh-products {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0f0f23 100%);
    color: #fff;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.moh-products::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(233,69,96,0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.moh-products .moh-section-title h2 { color: #fff; }

.moh-products .moh-section-title p { color: rgba(255,255,255,0.6); }

.moh-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.moh-product-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 2.2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.moh-product-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233,69,96,0.08), transparent);
    transition: left 0.6s;
}

.moh-product-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(233,69,96,0.4), transparent, rgba(233,69,96,0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.moh-product-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(233,69,96,0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(233,69,96,0.1);
    background: rgba(255,255,255,0.05);
}

.moh-product-item:hover::before {
    left: 100%;
}

.moh-product-item:hover::after {
    opacity: 1;
}

.moh-product-icon {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.moh-product-item:hover .moh-product-icon {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 8px 16px rgba(233,69,96,0.3));
}

.moh-product-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.moh-product-item p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   MAP SECTION
   ============================================ */
.moh-map-section {
    background: #f8f9fa;
    padding: 6rem 2rem;
    position: relative;
}

.moh-map-container { max-width: 1200px; margin: 0 auto; }

.moh-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
}

.moh-map-info {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.4s ease;
}

.moh-map-info:hover {
    transform: translateY(-5px);
}

.moh-map-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.2rem;
}

.moh-map-info > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.moh-map-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.moh-map-detail::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, #e94560, #ff6b6b);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: top;
}

.moh-map-detail:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateX(8px);
}

.moh-map-detail:hover::before {
    transform: scaleY(1);
}

.moh-map-detail-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.moh-map-detail:hover .moh-map-detail-icon {
    transform: scale(1.1) rotate(-5deg);
}

.moh-map-detail div strong {
    color: #1a1a2e;
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.moh-map-detail div span {
    color: #666;
    font-size: 0.9rem;
}

.moh-map-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    min-height: 450px;
    transition: transform 0.4s ease;
}

.moh-map-frame:hover {
    transform: translateY(-5px);
}

.moh-map-frame iframe {
    width: 100%; height: 100%;
    min-height: 450px;
    border: none;
    border-radius: 20px;
    filter: grayscale(20%);
    transition: filter 0.4s;
}

.moh-map-frame:hover iframe { filter: grayscale(0%); }

.moh-map-overlay {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233,69,96,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(233,69,96,0); }
}

.moh-map-overlay-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.moh-map-overlay div strong {
    color: #1a1a2e;
    font-weight: 700;
    display: block;
    font-size: 1rem;
}

.moh-map-overlay div span {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.moh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.moh-contact-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.2rem;
}

.moh-contact-info > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.moh-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.moh-contact-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, #e94560, #ff6b6b);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: top;
}

.moh-contact-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(10px) scale(1.02);
}

.moh-contact-item:hover::before {
    transform: scaleY(1);
}

.moh-contact-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(233,69,96,0.2);
    transition: all 0.3s;
}

.moh-contact-item:hover .moh-contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(233,69,96,0.3);
}

.moh-contact-item div strong {
    color: #1a1a2e;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.moh-contact-item div span {
    color: #666;
    font-size: 0.95rem;
}

.moh-contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s;
}

.moh-contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.moh-form-group { margin-bottom: 1.5rem; }

.moh-form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.moh-form-group input,
.moh-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #1a1a2e;
}

.moh-form-group input::placeholder,
.moh-form-group textarea::placeholder { color: #aaa; }

.moh-form-group input:focus,
.moh-form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(233,69,96,0.1);
}

.moh-form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.moh-form-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(233,69,96,0.25);
    position: relative;
    overflow: hidden;
}

.moh-form-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.moh-form-btn:hover::before {
    width: 400px;
    height: 400px;
}

.moh-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233,69,96,0.4);
}

.moh-form-btn:active { transform: translateY(-1px); }

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.moh-whatsapp {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.moh-whatsapp:hover { transform: scale(1.05); }

.moh-whatsapp-bubble {
    background: #fff;
    color: #1a1a2e;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.35s ease;
    white-space: nowrap;
    pointer-events: none;
}

.moh-whatsapp-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.moh-whatsapp:hover .moh-whatsapp-bubble {
    opacity: 1;
    transform: translateX(0);
}

.moh-whatsapp-btn {
    width: 64px; height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    animation: whatsappPulse 2.5s infinite;
    cursor: pointer;
    border: none;
    transition: transform 0.3s;
}

.moh-whatsapp-btn:hover { transform: scale(1.1); }

.moh-whatsapp-btn svg {
    width: 34px; height: 34px;
    fill: #fff;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
}

/* ============================================
   FOOTER
   ============================================ */
.moh-footer {
    background: #050510;
    color: rgba(255,255,255,0.5);
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.moh-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233,69,96,0.5), transparent);
}

.moh-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.moh-footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.moh-footer-logo span { color: #e94560; }

.moh-footer > p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.moh-footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.moh-footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.moh-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: #e94560;
    transition: width 0.3s;
}

.moh-footer-links a:hover {
    color: #e94560;
}

.moh-footer-links a:hover::after { width: 100%; }

.moh-footer-copy {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.moh-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.moh-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.moh-services-grid .moh-reveal:nth-child(1) { transition-delay: 0s; }
.moh-services-grid .moh-reveal:nth-child(2) { transition-delay: 0.1s; }
.moh-services-grid .moh-reveal:nth-child(3) { transition-delay: 0.2s; }
.moh-services-grid .moh-reveal:nth-child(4) { transition-delay: 0.3s; }
.moh-services-grid .moh-reveal:nth-child(5) { transition-delay: 0.4s; }
.moh-services-grid .moh-reveal:nth-child(6) { transition-delay: 0.5s; }

.moh-products-grid .moh-reveal:nth-child(1) { transition-delay: 0s; }
.moh-products-grid .moh-reveal:nth-child(2) { transition-delay: 0.1s; }
.moh-products-grid .moh-reveal:nth-child(3) { transition-delay: 0.2s; }
.moh-products-grid .moh-reveal:nth-child(4) { transition-delay: 0.3s; }
.moh-products-grid .moh-reveal:nth-child(5) { transition-delay: 0.4s; }
.moh-products-grid .moh-reveal:nth-child(6) { transition-delay: 0.5s; }

/* Blur reveal variant */
.moh-reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.moh-reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Scale reveal variant */
.moh-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.moh-reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .moh-about-grid,
    .moh-contact-grid,
    .moh-map-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .moh-about-visual { order: -1; }
    .moh-map-frame { min-height: 350px; }
    .moh-map-frame iframe { min-height: 350px; }
}

@media (max-width: 768px) {
    .moh-navbar { padding: 1rem 1.5rem; }
    .moh-nav-links { display: none; }
    .moh-mobile-menu { display: flex; }
    .moh-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .moh-btn {
        width: 100%;
        max-width: 300px;
    }
    .moh-section { padding: 4rem 1.5rem; }
    .moh-services-grid { grid-template-columns: 1fr; }
    .moh-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .moh-product-item { padding: 1.5rem; }
    .moh-about-stats { grid-template-columns: repeat(2, 1fr); }
    .moh-footer-links { gap: 1.5rem; }
    .moh-whatsapp {
        bottom: 1rem; right: 1rem;
    }
    .moh-whatsapp-bubble { display: none; }
    .moh-whatsapp-btn {
        width: 56px; height: 56px;
    }
    .moh-whatsapp-btn svg {
        width: 28px; height: 28px;
    }
    .moh-backtop {
        width: 44px;
        height: 44px;
        bottom: 1rem;
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .moh-hero h1 { font-size: 2.2rem; }
    .moh-products-grid { grid-template-columns: 1fr; }
    .moh-about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .moh-stat-card { padding: 1rem; }
    .moh-stat-number { font-size: 2rem; }
    .moh-exp-number { font-size: 3rem; }
    .moh-map-info { padding: 1.5rem; }
    .moh-contact-form { padding: 1.5rem; }
}

/* ============================================
   SCROLLBAR & SELECTION
   ============================================ */
::selection {
    background: rgba(233,69,96,0.3);
    color: #1a1a2e;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e94560, #ff6b6b);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #c73e54; }

/* ============================================
   DUYURU ÇUBUĞU (ANNOUNCEMENT BAR)
   ============================================ */
.moh-announcement-bar {
    background: linear-gradient(90deg, #e94560, #d63447);
    color: #fff;
    padding: 8px 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10002;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.moh-announcement-content {
    flex: 1;
    text-align: center;
    font-weight: 500;
}
.moh-announcement-content a {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 700;
}
.moh-announcement-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

/* ============================================
   ÜRÜNLER & KATALOG STILLERI
   ============================================ */
.moh-products-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.moh-categories-scroll {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.moh-category-btn {
    padding: 8px 18px;
    border-radius: 30px;
    background: #f4f5f8;
    color: #4a4a68;
    border: 1px solid #e2e4ea;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.moh-category-btn:hover {
    background: #e94560;
    color: #fff;
    border-color: #e94560;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.25);
}
.moh-category-btn.active {
    background: #e94560;
    color: #fff;
    border-color: #e94560;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.35);
}
.moh-search-box {
    position: relative;
    min-width: 260px;
}
.moh-search-box input {
    width: 100%;
    padding: 10px 38px 10px 16px;
    border-radius: 25px;
    border: 1px solid #dde1ea;
    background: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}
.moh-search-box input:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}
.moh-search-box svg {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    fill: #999;
}
.moh-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
}
.moh-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.moh-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(233, 69, 96, 0.12);
    border-color: rgba(233, 69, 96, 0.3);
}
.moh-product-media {
    position: relative;
    width: 100%;
    height: 210px;
    background: linear-gradient(135deg, #111424, #1b2138);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}
.moh-product-media img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.moh-product-card:hover .moh-product-media img {
    transform: scale(1.08);
}
.moh-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(233, 69, 96, 0.95);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.moh-product-info {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.moh-product-category {
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #e94560;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
}
.moh-product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.moh-product-desc {
    font-size: 0.88rem;
    color: #64647a;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex: 1;
}
.moh-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid #f0f1f5;
}
.moh-product-price {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a2e;
}
.moh-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.moh-product-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.moh-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #64647a;
}

/* ============================================
   HORTUM İMALAT SÜRECİ (ASSEMBLY SECTION)
   ============================================ */
.moh-assembly-section {
    background: linear-gradient(180deg, #f9faff 0%, #edf1fa 100%);
    position: relative;
}
.moh-assembly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}
.moh-assembly-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e8ecf4;
    transition: all 0.35s ease;
}
.moh-assembly-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.1);
    border-color: #e94560;
}
.moh-assembly-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(233, 69, 96, 0.15);
    line-height: 1;
}
.moh-assembly-img-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.2rem;
    background: #0f0f23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.moh-assembly-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.moh-assembly-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}
.moh-assembly-card p {
    font-size: 0.86rem;
    color: #64647a;
    line-height: 1.5;
}

/* ============================================
   SERVİS ÖZEL İKONU & ROZETİ
   ============================================ */
.moh-service-custom-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.moh-service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
}
.moh-brand-img {
    height: 42px;
    max-width: 180px;
    object-fit: contain;
    vertical-align: middle;
}
.moh-footer-admin-link {
    color: #e94560 !important;
    font-weight: 700 !important;
    opacity: 0.85;
    transition: opacity 0.3s;
}
.moh-footer-admin-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ============================================
   TOAST BİLDİRİMLERİ (TOAST NOTIFICATIONS)
   ============================================ */
.moh-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.moh-toast {
    background: #111424;
    color: #fff;
    border-left: 4px solid #e94560;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    max-width: 380px;
}
.moh-toast.show {
    opacity: 1;
    transform: translateX(0);
}
.moh-toast-success { border-left-color: #25D366; }
.moh-toast-warning { border-left-color: #f39c12; }
.moh-toast-info { border-left-color: #3498db; }

