/* ==========================================================================
   Minik Mühendisler - Root Variables & Reset
   ========================================================================== */

:root {
    /* Colors */
    --clr-primary: #f7941d;       /* Turuncu - logo <> parantez rengi */
    --clr-secondary: #1a3a8f;     /* Koyu Mavi - logo MİNİK MÜHENDİSLER rengi */
    --clr-accent: #e8f2ff;        /* Açık Mavi - arka plan vurgusu */
    --clr-white: #ffffff;
    --clr-text-main: #1a2340;
    --clr-text-light: #5a6480;
    
    /* Workshop Colors */
    --clr-workshop-1: #f7941d;    /* Turuncu */
    --clr-workshop-2: #ffd200;    /* Sarı - karakter rengi */
    --clr-workshop-3: #1a6fbe;    /* Mavi */
    --clr-workshop-4: #1a3a8f;    /* Koyu Mavi */

    /* Custom Color Utilities */
    --bg-blue-light: #eef4ff;
    --bg-blue-lighter: #e0f0ff;
    --bg-yellow-light: #fff8e0;
    --bg-purple-light: #f0f4ff;
    --bg-orange-light: #fff4e0;

    /* Typography */
    --font-main: 'Nunito', sans-serif;
    
    /* Layout */
    --container-width: 1140px;
    --transition: all 0.3s ease;
}


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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.highlight-red {
    color: var(--clr-primary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--clr-secondary);
}

.section-title p {
    font-size: 16px;
    color: var(--clr-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--clr-white);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text-main);
    border-bottom: 1px solid #f1f1f1;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--clr-text-main);
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--clr-primary);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
    background-color: var(--clr-white);
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 40px;
    color: var(--clr-primary);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 5px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.logo-minik {
    font-size: 30px;
    font-weight: 900;
    color: #1a3a8f; /* Koyu Mavi - logo rengi */
}

.logo-muhendisler {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-primary);
}

.logo-slogan {
    font-size: 11px;
    color: var(--clr-text-light);
    margin-top: 2px;
}

/* Nav Links */
.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links > li > a {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-text-main);
}

.nav-links > li > a.active,
.nav-links > li > a:hover {
    color: var(--clr-primary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--clr-white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 101;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-weight: 600;
    color: var(--clr-text-main);
}

.dropdown-menu li a:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--clr-text-main);
    padding: 5px;
    z-index: 200;
    position: relative;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--clr-primary);
}

/* Mobile Nav Open State */
@media (max-width: 992px) {
    .nav-links.nav-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 150;
        animation: menuSlideIn 0.3s ease;
    }

    .nav-links.nav-open > li > a {
        font-size: 22px;
        font-weight: 800;
        padding: 10px 20px;
    }

    .nav-links.nav-open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--clr-accent);
        border-radius: 8px;
        padding: 8px 0;
        display: none;
        text-align: center;
    }

    .nav-links.nav-open .dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-links.nav-open .dropdown > a {
        cursor: pointer;
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: #e07e10;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.35);
}

.btn-secondary {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
}

.btn-secondary:hover {
    background-color: #122d74;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 143, 0.3);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 80px 0 120px;
    background-color: var(--clr-white);
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 60%;
    height: 120%;
    background-color: #e8f2ff;
    border-radius: 50% 0 0 50%;
    z-index: 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h2 {
    font-size: 32px;
    color: var(--clr-text-main);
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--clr-text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    background-color: var(--clr-primary);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    margin-top: -30px;
    z-index: 2;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-bg-elements i {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
}

.cta-cloud1 { top: 20%; left: 25%; font-size: 3rem; }
.cta-cloud2 { top: 60%; right: 15%; font-size: 2rem; }
.cta-rocket { bottom: -20px; left: 10%; font-size: 10rem; transform: rotate(45deg); opacity: 0.8 !important; color: white !important; }
.cta-gear1 { top: 10%; right: 5%; font-size: 4rem; }
.cta-gear2 { bottom: 10%; right: 25%; font-size: 3rem; }

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-inner h2 {
    color: var(--clr-white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 16px;
}

.cta-form button {
    padding: 15px 40px;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    background-color: var(--clr-accent);
    padding: 80px 0 120px;
    position: relative;
}

.features-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-card {
    background-color: var(--clr-white);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.feature-icon-wrapper {
    position: relative;
    height: 180px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    filter: blur(35px);
    z-index: 1;
}

.feature-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover .feature-icon-wrapper img {
    transform: scale(1.1) translateY(-10px);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--clr-secondary);
}

.feature-card p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--clr-primary);
    padding: 10px 25px;
    background: rgba(247, 148, 29, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: rgba(247, 148, 29, 0.2);
    gap: 12px;
    text-decoration: none;
}

.features-bottom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--clr-white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 100px 0;
    background-color: var(--clr-white);
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--clr-text-main);
}

.about-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--clr-text-light);
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
    position: relative;
    min-width: 0;
}

.image-mask {
    width: 100%;
    height: 400px;
    border-radius: 40px 120px 40px 120px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Enhanced Info Image Styles */
.info-image-container {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.info-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.6;
    transition: all 0.6s ease;
}

.info-image-mask {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 40px 120px 40px 120px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    z-index: 1;
    border: 8px solid #fff;
}

.mask-reverse {
    border-radius: 120px 40px 120px 40px;
}

.info-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-image-container:hover .info-image-mask img {
    transform: scale(1.1);
}

.info-image-container:hover .info-image-glow {
    opacity: 0.9;
    transform: scale(1.1);
}

/* ==========================================================================
   Workshops Section
   ========================================================================== */
.workshops {
    background-color: var(--clr-secondary);
    padding: 100px 0 120px;
    position: relative;
    color: var(--clr-white);
}

.workshops .section-title h2 {
    color: var(--clr-white);
}

.workshops .section-title p {
    color: #a0a6bc;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.workshop-card {
    background-color: var(--clr-white);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    display: flex;
    flex-direction: column;
}

.workshop-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.workshop-img {
    height: 230px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--clr-white);
}

.workshop-icon-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.5s ease;
}

.workshop-card:hover .workshop-icon-glow {
    transform: scale(1.08);
}

/* Elegant, soft pastel circular backgrounds without messy blurs */
.workshop-bg-orange .workshop-icon-glow {
    background: linear-gradient(135deg, #fffcf5 0%, #fff0db 100%);
}
.workshop-bg-yellow .workshop-icon-glow {
    background: linear-gradient(135deg, #fffef0 0%, #fff6cc 100%);
}
.workshop-bg-blue .workshop-icon-glow {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0edff 100%);
}
.workshop-bg-darkblue .workshop-icon-glow {
    background: linear-gradient(135deg, #f2f4ff 0%, #e6ebff 100%);
}

.workshop-img img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08));
}

.workshop-card:hover .workshop-img img {
    transform: scale(1.15) translateY(-5px);
}

.workshop-info {
    padding: 10px 20px 30px;
    text-align: center;
    background: var(--clr-white);
    position: relative;
    z-index: 3;
}

.workshop-info h4 {
    color: var(--clr-secondary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: none;
}

.workshop-line {
    width: 50px;
    height: 4px;
    margin: 0 auto;
    border-radius: 10px;
}

.bg-orange { background: #f7941d; color: #f7941d; }
.bg-yellow { background: #ffd200; color: #ffd200; }
.bg-blue { background: #1a6fbe; color: #1a6fbe; }
.bg-darkblue { background: #1a3a8f; color: #1a3a8f; }

.workshops-bottom-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--clr-white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process {
    padding: 120px 0 80px;
    background-color: var(--clr-white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 2px;
    border-top: 2px dashed #e0e0e0;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 120px;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 15px;
    border: 3px solid;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-yellow { border-color: var(--clr-workshop-2); color: var(--clr-workshop-2); }
.step-green { border-color: var(--clr-workshop-3); color: var(--clr-workshop-3); }
.step-red { border-color: var(--clr-primary); color: var(--clr-primary); }
.step-blue { border-color: var(--clr-secondary); color: var(--clr-secondary); }

.process-step h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--clr-text-main);
}

.process-step:nth-child(1) h4 { color: var(--clr-workshop-2); }
.process-step:nth-child(2) h4 { color: var(--clr-workshop-3); }
.process-step:nth-child(3) h4 { color: var(--clr-primary); }
.process-step:nth-child(4) h4 { color: var(--clr-text-main); }

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog {
    padding: 80px 0;
    background-color: var(--clr-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.blog-img {
    position: relative;
}

.blog-date {
    display: inline-block;
    padding: 5px 15px;
    color: var(--clr-white);
    font-size: 12px;
    font-weight: 700;
    margin-top: -15px;
    position: relative;
    z-index: 2;
    margin-left: 20px;
}

.bg-red { background-color: var(--clr-primary); }
.bg-orange { background-color: #ff8c42; }

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--clr-text-main);
}

.blog-content p {
    font-size: 14px;
    color: var(--clr-text-light);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter {
    background-color: var(--clr-primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.newsletter-bg-elements i {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
}

.nl-plane { top: 20%; right: 10%; font-size: 4rem; transform: rotate(-15deg); }
.nl-horn { bottom: 10%; left: 15%; font-size: 6rem; transform: rotate(-30deg); }
.nl-mail { bottom: 20%; right: 25%; font-size: 3rem; }

.newsletter-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.newsletter-inner h2 {
    color: var(--clr-white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: var(--font-main);
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    border-radius: 0 5px 5px 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-secondary);
    padding: 80px 0 40px;
    color: #a0a6bc;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    color: var(--clr-white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 20px;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
}

.social-icons-footer a {
    color: var(--clr-white);
    font-size: 16px;
}

.social-icons-footer a:hover {
    color: var(--clr-primary);
}

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

.footer-col ul li a {
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--clr-primary);
}

.empty-title-col {
    padding-top: 48px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.contact-item i {
    font-size: 24px;
    color: var(--clr-white);
}

.contact-item span {
    display: block;
    font-size: 12px;
}

.contact-item strong {
    display: block;
    color: var(--clr-white);
    font-size: 15px;
}

.copyright {
    background-color: #122d74;
    padding: 20px 0;
    text-align: center;
    color: #a0b4d0;
    font-size: 13px;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .hamburger { display: flex; align-items: center; justify-content: center; }
    
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-content { padding-right: 0; margin-bottom: 50px; }
    .hero-content p { margin: 0 auto 30px; }
    
    .features-inner { grid-template-columns: repeat(1, 1fr); }
    
    /* Mobilde tüm about-inner varyantlarını column yap */
    .about-inner,
    .about-inner.info-inner-gap,
    .about-inner.info-inner-reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    /* Görsel kapsayıcısı tam genişlik, ortalanmış */
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        flex: unset;
    }

    /* Görsel maskesi oranı korunsun, sabit yükseklik yerine aspect-ratio */
    .info-image-mask {
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 30px 80px 30px 80px;
        border-width: 5px;
    }

    .mask-reverse {
        border-radius: 80px 30px 80px 30px;
    }
    
    .workshops-grid { grid-template-columns: repeat(2, 1fr); }
    
    .process-steps { flex-direction: column; align-items: center; gap: 40px; }
    .process-steps::before { display: none; }
    
    .blog-grid { grid-template-columns: repeat(1, 1fr); }
    
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .empty-title-col { padding-top: 0; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 40px; }
    .cta-form { flex-direction: column; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-radius: 5px; margin-bottom: 10px; }
    .newsletter-form button { border-radius: 5px; }
    .footer-inner { grid-template-columns: repeat(1, 1fr); }

    /* Küçük telefonlarda gorsel daha kompakt */
    .about-image {
        max-width: 100%;
    }

    .info-image-mask {
        aspect-ratio: 3 / 2;
        border-radius: 20px 50px 20px 50px;
    }

    .mask-reverse {
        border-radius: 50px 20px 50px 20px;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes spin3D {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.spinning-robot {
    animation: float 6s linear infinite;
    transform-style: preserve-3d;
}

/* ==========================================================================
   Custom Modal Styles
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    padding-top: 100px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border: none;
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    animation: slideIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.close-modal {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--clr-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--clr-secondary);
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 5px;
}

.modal-header h3 {
    font-size: 16px;
    color: var(--clr-primary);
    font-weight: 700;
}

.modal-body {
    color: var(--clr-text-light);
    line-height: 1.8;
}

.modal-features {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.modal-feat-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: #f8faff;
    border-radius: 15px;
}

.modal-feat-item i {
    font-size: 24px;
    color: var(--clr-primary);
    margin-top: 5px;
}

.modal-feat-item h4 {
    color: var(--clr-text-main);
    font-weight: 800;
    margin-bottom: 5px;
}

.modal-feat-item p {
    font-size: 14px;
    margin: 0;
}

.modal-footer {
    margin-top: 40px;
    text-align: center;
}

.modal-footer .btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

/* Pulse Animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Blog Hover Effects */
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1) !important;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-card:hover .read-more {
    gap: 12px !important;
}

/* ==========================================================================
   App Download Section
   ========================================================================== */
.app-section {
    padding: 80px 0;
    background: #f0f4f9;
}

.app-card {
    background: linear-gradient(135deg, #1a3a8f 0%, #1a6fbe 100%);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 58, 143, 0.2);
}

.app-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.app-info {
    flex: 1;
}

.app-tag {
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.app-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.app-info p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-benefits {
    display: flex;
    gap: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}

.benefit i {
    color: #ffce31;
    font-size: 18px;
}

.app-qr {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    color: var(--clr-secondary);
}

.qr-wrapper {
    position: relative;
    padding: 10px;
    background: #fff;
    margin-bottom: 15px;
}

.qr-wrapper img {
    width: 180px;
    height: 180px;
    display: block;
}

.qr-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--clr-primary);
}

.qr-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.qr-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.qr-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.qr-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.qr-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-text-light);
}

@media (max-width: 992px) {
    .app-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .app-benefits {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ==========================================================================
   PWA Install Banner
   ========================================================================== */
.pwa-install-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 15px 20px;
    z-index: 10001;
    animation: slideUpPwa 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes slideUpPwa {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.pwa-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pwa-text {
    flex: 1;
}

.pwa-text strong {
    display: block;
    font-size: 16px;
    color: var(--clr-secondary);
    font-weight: 800;
}

.pwa-text span {
    font-size: 13px;
    color: var(--clr-text-light);
}

.pwa-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-sm {
    padding: 8px 18px !important;
    font-size: 13px !important;
}

.pwa-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.pwa-close:hover {
    color: var(--clr-primary);
}

/* Responsive adjustment for PWA banner to not overlap WhatsApp */
@media (max-width: 768px) {
    .pwa-install-banner {
        bottom: 85px; /* Stay above the floating whatsapp button on mobile */
    }
}

/* ==========================================================================
   Utility / Component Classes (previously inline styles)
   ========================================================================== */

/* Logo image */
.logo-img-main {
    height: 78px;
    width: auto;
    object-fit: contain;
}

/* Hero image wrapper */
.hero-image-wrapper {
    height: 450px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero illustration container */
.hero-illustration-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero background glow */
.hero-glow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26,111,190,0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

/* Hero circular robot container */
.hero-circular-container {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    perspective: 1000px;
    border: 8px solid rgba(255,255,255,0.8);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: #fff;
}

/* Hero robot image */
.hero-robot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* Floating icons */
.fi-robot {
    top: -5%;
    left: -8%;
    font-size: 3.5rem;
    color: #ff5e5e;
    z-index: 3;
    filter: drop-shadow(0 8px 15px rgba(255,94,94,0.4));
}

.fi-microchip {
    top: -10%;
    right: 5%;
    font-size: 3rem;
    color: #ffce31;
    z-index: 1;
    filter: drop-shadow(0 8px 15px rgba(255,206,49,0.4));
    animation-delay: 1.5s;
}

.fi-code {
    bottom: 5%;
    right: -10%;
    font-size: 3.2rem;
    color: #3be2ab;
    z-index: 3;
    filter: drop-shadow(0 8px 15px rgba(59,226,171,0.4));
    animation-delay: 3s;
}

.fi-vr {
    bottom: -10%;
    left: 15%;
    font-size: 3.5rem;
    color: #4895ef;
    z-index: 1;
    filter: drop-shadow(0 8px 15px rgba(72,149,239,0.4));
    animation-delay: 2s;
}

/* Feature icon backgrounds */
.feature-bg-green  { background: rgba(59, 226, 171, 0.3); }
.feature-bg-yellow { background: rgba(255, 206, 49, 0.3); }
.feature-bg-blue   { background: rgba(72, 149, 239, 0.3); }

/* About image fill */
.about-img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info section layouts */
.info-section-blue {
    padding: 100px 0;
    background-color: var(--bg-blue-light);
}

.info-section-white {
    padding: 100px 0;
    background-color: var(--clr-white);
}

.info-inner-gap {
    gap: 50px;
}

.info-inner-reverse {
    gap: 50px;
    flex-direction: row-reverse;
}

/* Glow colors per workshop */
.glow-orange { background: rgba(247, 148, 29, 0.4); }
.glow-yellow { background: rgba(255, 210, 0, 0.4); }
.glow-blue   { background: rgba(26, 111, 190, 0.4); }
.glow-navy   { background: rgba(26, 58, 143, 0.4); }

/* Info section heading */
.info-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 15px;
}

/* Info section paragraph */
.info-section-text {
    font-size: 16px;
    color: var(--clr-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-section-text-last {
    font-size: 16px;
    color: var(--clr-text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Info section list */
.info-section-list {
    list-style-type: none;
    margin-bottom: 35px;
    padding: 0;
}

.info-section-list li {
    margin-bottom: 12px;
    color: var(--clr-text-main);
    font-weight: 700;
    font-size: 16px;
}

.info-check-icon {
    margin-right: 12px;
    font-size: 18px;
}

/* Blog card styles (moved from inline) */
.blog-card-styled {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    color: #fff;
}

.blog-category-primary  { background: var(--clr-primary); }
.blog-category-orange   { background: #f7941d; }
.blog-category-yellow   { background: #ffd200; color: #333; }

.blog-content-styled {
    padding: 25px;
}

.blog-meta-row {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a0a6bc;
}

.blog-meta-icon {
    margin-right: 5px;
}

.blog-card-title {
    font-size: 20px;
    color: #1a3a8f;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 14px;
}

/* Blog view-all button wrapper */
.blog-view-all {
    text-align: center;
    margin-top: 50px;
}

.btn-blog-view-all {
    padding: 15px 40px;
    font-size: 15px;
    border-radius: 50px;
}

/* Location map section */
.location-map {
    width: 100%;
    height: 350px;
    background: #eee;
    margin-bottom: -10px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Modal sizes */
.modal-content-wide {
    max-width: 700px;
}

.modal-content-narrow {
    max-width: 400px;
    text-align: center;
}

/* iOS install modal header */
.modal-header-column {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-icon-mb {
    margin-bottom: 15px;
}

/* iOS install steps box */
.ios-steps-intro {
    margin-bottom: 20px;
}

.ios-steps-box {
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border: 1px dashed #ccd2e3;
}

.ios-steps-box p {
    margin-bottom: 10px;
}

.ios-step-icon {
    color: #007aff;
}

/* Contact address item */
.contact-address {
    display: flex;
    align-items: center;
}

/* Modal paragraph accent */
.modal-accent-text {
    margin-top: 20px;
    font-weight: 600;
    color: var(--clr-secondary);
}

/* Modal blockquote style */
.modal-quote {
    margin-top: 20px;
    border-left: 4px solid var(--clr-primary);
    padding-left: 15px;
    font-style: italic;
    color: #64748b;
}

/* Modal blog image */
.modal-blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* PWA hidden state (replaces inline display:none) */
.pwa-hidden {
    display: none !important;
}
