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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

@import url('variables.css');

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(5, 9, 19, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background: rgba(5, 9, 19, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon-t {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.logo-text-gradient {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.header-contact i {
    color: #a855f7;
    font-size: 1.3rem;
}

.header-lang i {
    color: #a855f7;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
}

.header-lang i:hover {
    color: #3b82f6;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.header-user i {
    color: #a855f7;
    font-size: 1.3rem;
}

.header-btn-teklif {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-btn-teklif:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    color: white;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn i {
    font-size: 1.4rem;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #a855f7;
}

@media (max-width: 992px) {
    .header-actions {
        gap: 15px;
    }

    .header-contact,
    .header-lang,
    .header-user,
    .header-btn-teklif {
        display: none !important;
    }
}

/* ==================================
   FULLSCREEN NAVIGATION
================================== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 9, 19, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
}

.menu-close-btn:hover {
    color: var(--primary);
}

.nav-overlay-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav-overlay-links li {
    margin: 15px 0;
}

.nav-link-item {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.nav-link-item:hover {
    color: var(--primary);
    transform: scale(1.05);
}

/* ==================================
   HERO SECTION
================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 40%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
}

.hero-tagline {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-desc-box {
    background: rgba(6, 182, 212, 0.15);
    /* Teklif Al blue with opacity */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 20px 30px;
    color: var(--text-main) !important;
    display: inline-block;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Hero graphic abstraction */
.hero-graphic {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    opacity: 0.8;
}

/* ==================================
   TECH TICKER
================================== */
.tech-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(5, 9, 19, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    z-index: 5;
    backdrop-filter: blur(5px);
}

.tech-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.tech-ticker-track span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0 20px;
    font-family: var(--font-heading);
}

.tech-ticker-track span.dot {
    color: var(--primary);
    font-size: 1.5rem;
    padding: 0 10px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==================================
   ABOUT SECTION
================================== */
.about {
    background-color: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    padding: 20px;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ==================================
   SERVICES SECTION
================================== */
/* ==================================
   EXPERTISE SECTION (REDESIGN)
================================== */
.expertise-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 500px;
}

.expertise-sidebar {
    background: rgba(15, 23, 42, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
}

.expertise-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 25px;
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid transparent;
}

.expertise-tab i {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.expertise-tab span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.expertise-tab:hover {
    background: rgba(255, 255, 255, 0.05);
}

.expertise-tab.active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.expertise-tab.active i {
    color: #a855f7;
    transform: scale(1.1);
}

.expertise-tab.active span {
    color: white;
}

.expertise-tab .tab-progress-bar {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-tab.active .tab-progress-bar {
    opacity: 1;
}

.expertise-tab .tab-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #a855f7, #3b82f6);
    transition: width 0.05s linear;
}

.expertise-content {
    padding: 60px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.05), transparent 40%);
}

.expertise-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.expertise-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #a855f7;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.1);
}

.expertise-panel h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expertise-panel p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px;
}

.expertise-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expertise-btn:hover {
    background: white;
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.expertise-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.expertise-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .expertise-container {
        grid-template-columns: 1fr;
    }

    .expertise-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 0;
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .expertise-tabs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        overflow-x: auto !important;
        padding: 10px 20px 20px 20px;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        touch-action: pan-x;
    }

    .expertise-tabs::-webkit-scrollbar {
        display: none;
    }

    .expertise-tab {
        flex: 0 0 auto;
        padding: 10px 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        white-space: nowrap;
        gap: 8px;
    }

    .expertise-tab.active {
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
        border-color: rgba(168, 85, 247, 0.4);
    }

    .expertise-tab i {
        font-size: 1.1rem;
    }

    .expertise-tab span {
        font-size: 0.85rem;
    }

    .expertise-tab .tab-progress-bar {
        left: 10px;
        right: 10px;
    }

    .expertise-content {
        padding: 30px 20px;
    }

    .expertise-icon-box {
        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .expertise-panel h3 {
        font-size: 1.6rem;
    }

    .expertise-panel p {
        font-size: 1rem;
        line-height: 1.6;
    }
}


/* ==================================
   PROJECTS SECTION
================================== */
.projects {
    background-color: var(--bg-darker);
}

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

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    group: hover;
    border: 1px solid var(--border);
}

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

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(6, 182, 212, 0.9) 0%, rgba(2, 6, 23, 0.6) 60%, transparent 100%);
    opacity: 1;
}

.project-category {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-card:hover .project-category {
    color: #fff;
}

.project-title {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

/* ==================================
   PROCESS SECTION
================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    padding-top: 40px;
}

/* Line connecting nodes */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

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

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-muted);
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ==================================
   CONTACT SECTION
================================== */
.contact {
    background-color: var(--bg-darker);
}

/* New Form Styles */
.contact-card {
    border-radius: 24px;
    padding: 50px;
    background: rgba(15, 23, 42, 0.6);
}

.input-with-icon {
    position: relative;
    margin-bottom: 20px;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
    z-index: 2;
}

.input-with-icon.textarea-group i {
    top: 25px;
    transform: none;
}

.form-control.rounded-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 30px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.input-with-icon.textarea-group .rounded-input {
    border-radius: 20px;
    padding-top: 20px;
}

.form-control.rounded-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #a855f7;
}

.form-control.rounded-input::placeholder {
    color: #94a3b8;
}

.btn.rounded-btn {
    border-radius: 30px;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: white;
}

.btn.rounded-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* ==================================
   FOOTER
================================== */
.footer {
    background-color: var(--bg-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

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

.footer-about p {
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.8;
}

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

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

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

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

/* ==================================
   RESPONSIVE (MOBILE)
================================== */

/* Tablet ve Küçük Masaüstü (992px altı) */
@media (max-width: 992px) {
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Header */
    .header-actions .header-contact,
    .header-actions .header-user,
    .header-actions .header-btn-teklif {
        display: none !important;
    }

    .navbar {
        padding: 0 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 70px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0;
    }

    .logo span {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }

    .logo-icon-t {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
        margin: 0 !important;
    }

    .mobile-menu-btn {
        margin: 0 !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px;
        color: white !important;
        cursor: pointer;
        border: none;
        z-index: 1001;
    }

    /* Hero Section - Full Screen Mobile */
    .hero {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100vh !important;
        min-height: 100vh !important;
        width: 100% !important;
        text-align: center !important;
        position: relative !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 40px !important;
        padding: 0 25px !important;
        z-index: 2 !important;
    }

    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        z-index: 5 !important;
    }

    .hero-btns .btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 15px 20px !important;
        border-radius: 12px !important;
    }

    .hero-btns .btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
        border-radius: 12px !important;
        display: flex !important;
        justify-content: center !important;
    }

    .hero-graphic {
        display: none;
    }

    /* Mobilde JS Hatasını Önlemek İçin Efekti Devre Dışı Bırak */
    canvas {
        pointer-events: none !important;
        display: none !important;
    }

    /* Services & Tabs */
    .browser-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .browser-tab {
        flex: 0 0 auto;
        min-width: 130px;
        padding: 10px 15px !important;
    }

    .tab-title {
        font-size: 0.8rem;
    }

    .browser-body {
        padding: 30px 15px !important;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .tab-content-panel h3 {
        font-size: 1.4rem;
    }

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    /* Contact Card */
    .contact-card {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        margin: 0 10px;
    }

    .contact-info-new {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px 20px !important;
    }

    .contact-form-container {
        padding: 30px 15px !important;
        width: 100% !important;
    }

    #contactForm {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .form-group {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .form-group input,
    .form-group textarea {
        width: 100% !important;
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }

    .submit-btn {
        width: 100% !important;
        padding: 16px !important;
        font-size: 1.1rem !important;
        margin-top: 10px !important;
    }

    /* Process Timeline Mobile */
    .process-timeline {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        position: relative !important;
        align-items: flex-start !important;
    }

    .process-timeline::before {
        width: 2px !important;
        height: 100% !important;
        left: 25px !important;
        top: 0 !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.1) !important;
        content: "" !important;
        position: absolute !important;
    }

    .process-step {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 20px !important;
        padding: 0 !important;
        width: 100% !important;
        background: none !important;
        position: relative !important;
    }

    .step-icon {
        width: 50px !important;
        height: 50px !important;
        flex-shrink: 0 !important;
        z-index: 2 !important;
        margin: 0 !important;
        background: var(--bg-dark) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }

    .step-title {
        margin: 0 !important;
        font-size: 1.1rem !important;
    }

    .process-step p {
        margin: 0 !important;
        font-size: 0.85rem !important;
        color: var(--text-muted) !important;
    }

    /* General Spacing */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-container {
        text-align: left;
    }
}

/* Küçük Telefonlar (480px altı) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem !important;
    }

    .logo-icon-t {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .logo span {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-detail-item {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .tech-ticker span {
        font-size: 0.75rem;
    }
}

/* ==================================
   PERFORMANCE & HARDWARE ACCELERATION
================================== */
.hw-accel {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000;
}