/* =========================================
   MOBILTEG MODERN CORPORATE CSS
   ========================================= */

:root {
    --primary-red: #E60000;
    --primary-red-hover: #cc0000;
    --dark-bg: #0b0f19;
    --darker-bg: #05080f;
    --card-bg: rgba(20, 25, 40, 0.6);
    --card-border: rgba(255, 255, 255, 0.05);
    --text-main: #f0f0f0;
    --text-muted: #a0a5b5;
    --glass-bg: rgba(11, 15, 25, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #a0a5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   BUTTONS & LINKS
   ========================================= */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.btn-primary, .btn-primary-sm {
    background: var(--primary-red);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.btn-primary { padding: 12px 28px; font-size: 1.1rem; }
.btn-primary-sm { padding: 8px 20px; font-size: 0.95rem; }

.btn-primary:hover, .btn-primary-sm:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* =========================================
   NAVBAR (HEADER)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Kırmızı background içinde mobilteg yazısı (Logo Style Requirement) */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
}

.logo-brand {
    background-color: var(--primary-red);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    transition: var(--transition-fast);
}

.logo:hover .logo-brand {
    background-color: var(--primary-red-hover);
    transform: scale(1.05);
}

.logo .slogan {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo .slogan {
        display: none;
    }
}

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

.nav-links a:not(.btn-primary-sm) {
    font-weight: 500;
    font-size: 0.95rem;
    color: #d0d5e0;
}

.nav-links a:not(.btn-primary-sm):hover {
    color: #fff;
}

/* =========================================
   HERO SECTION MODERN REDESIGN
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at top right, rgba(230, 0, 0, 0.08) 0%, rgba(11, 15, 25, 1) 40%);
    overflow: hidden;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}
.hero-content-left {
    max-width: 650px;
    animation: fadeInUp 1s ease forwards;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(230, 0, 0, 0.1);
    color: #ff4d4d;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(230, 0, 0, 0.2);
}
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-title .highlight-gradient {
    background: linear-gradient(135deg, #fff, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}
.btn-glow {
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--primary-red) 0%, #aa0000 100%);
    border: none;
}
.btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: #fff;
    color: #000;
}
/* Right Side Visuals */
.hero-visual-right {
    position: relative;
    height: 600px;
    width: 100%;
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}
.orb-1 {
    width: 350px; height: 350px;
    background: var(--primary-red);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseOrb 8s infinite alternate;
}
.orb-2 {
    width: 250px; height: 250px;
    background: #1e3a8a;
    bottom: 5%; right: 10%;
}
.floating-card {
    position: absolute;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    overflow: hidden;
}
.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.floating-card-1 {
    width: 85%;
    height: 300px;
    top: 10%;
    right: -10%;
    z-index: 3;
    animation: floatUp 6s ease-in-out infinite;
}
.floating-card-2 {
    width: 70%;
    height: 250px;
    bottom: 5%;
    left: -5%;
    z-index: 2;
    animation: floatUp 7s ease-in-out infinite 1.5s;
    border-color: rgba(230, 0, 0, 0.4);
}
.integrated-orb {
    position: absolute;
    bottom: 35%;
    left: -15%;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.integrated-orb.active {
    opacity: 1;
    transform: translateY(0);
}

.orb-pulse {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulseEffect 3s infinite ease-in-out;
    z-index: -1;
    pointer-events: none;
}

@keyframes orbPulseEffect {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.2; }
}

.card-glass-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(230,0,0,0.1) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    animation: glassSlide 4s infinite linear;
}

@keyframes glassSlide {
    0% { transform: translateX(-100%) skewX(-25deg); }
    100% { transform: translateX(200%) skewX(-25deg); }
}


.status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

.orb-content strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
}

.orb-content p {
    color: #a0a5b5;
    font-size: 0.85rem;
    margin: 0;
}
@keyframes floatUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
@keyframes pulseOrb {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

/* =========================================
   INTEGRATION BANNER
   ========================================= */
.integration-banner {
    background: linear-gradient(90deg, #0a0b10, #141721, #0a0b10);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    text-align: center;
}

.integration-text {
    font-size: 1.1rem;
    color: #ccc;
}

.integration-text strong {
    color: #fff;
    margin: 0 5px;
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: rgba(230, 0, 0, 0.3);
}

.card-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.product-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.card-link:hover {
    color: #ff4d4d;
    transform: translateX(5px);
}

/* =========================================
   STATS / ABOUT SECTION
   ========================================= */
.stats-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.stat-box {
    padding: 30px;
    background: linear-gradient(180deg, rgba(20, 25, 40, 0.4) 0%, rgba(5, 8, 15, 0.2) 100%);
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.stat-box .counter {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
}

.about-us {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-us p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.mt-5 { margin-top: 5rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #030408;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.lang-switcher a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 2px 4px;
}

.lang-switcher a:hover {
    color: #fff;
}

.lang-switcher a.active {
    color: var(--primary-red);
    background: rgba(230, 0, 0, 0.1);
    border-radius: 4px;
}

.lang-switcher .sep {
    color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 0;
        margin-bottom: 20px;
        order: -1;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    background-color: var(--primary-red);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 300px;
}

.contact-details p {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile hide for now */
    }
    .menu-toggle { display: flex; }
    
    .hero-title { font-size: 2.5rem; }
    .hero { padding-top: 100px; text-align: center; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    
    .stats-grid { grid-template-columns: 1fr; }
}
