/* TurkNet Inspired CSS for MYBEC */
.menu-close-btn, .mobile-contact-header { display: none !important; }

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors based on Logo */
    --primary: #383073; /* Koyu Mor/Lacivert */
    --secondary: #F38A20; /* Turuncu */
    
    /* Hero Gradient (TurkNet style but with MYBEC colors) */
    --gradient-bg: linear-gradient(135deg, #4A148C 0%, #383073 50%, #1A103C 100%);
    
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary); /* Deep purple background matching hero bottom */
    overflow-x: hidden;
    padding-top: 80px !important; /* Proper spacing for fixed header */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar - Fixed to top */
.header {
    background-color: var(--white) !important;
    padding: 10px 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary);
    font-weight: 500;
}

.dropdown .dropbtn {
    background: transparent;
    border: 1px solid #eee;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(56, 48, 115, 0.04);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 138, 32, 0.2);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: #f4f6f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}

.search-btn:hover {
    background: #e9ecef;
}

.btn-online-islemler {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(56, 48, 115, 0.2);
}

.btn-online-islemler i {
    font-size: 18px;
}

.btn-online-islemler:hover {
    background-color: #292257;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 48, 115, 0.3);
}

/* Header Contact Stack */
.contact-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-right: 15px;
    justify-content: center;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    padding: 4px 12px;
    border-radius: 6px;
    transition: 0.3s;
    line-height: 1;
}

.call-row {
    background: #f0f2f5;
    color: var(--primary);
}

.call-row i {
    color: var(--secondary);
}

.whatsapp-row {
    background: #25D366;
    color: white;
}

.whatsapp-row:hover {
    background: #128C7E;
    transform: translateX(-3px);
}

.search-btn {
    display: none !important;
}

.mobile-contact {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: 14px !important;
    color: var(--primary) !important;
    padding: 10px !important;
    background: #f8f9fa;
    border-radius: 8px;
}

@media (max-width: 1250px) {
    .contact-info {
        display: none;
    }
    .mobile-contact {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-bg);
    min-height: 900px;
    padding-top: 60px;
    position: relative;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--secondary);
    font-weight: 800;
}

.hero-content h1 strong {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
}

/* Glowing Price Box */
.price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #FF66CC;
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 102, 204, 0.4);
    margin: 20px 0;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.price-box:hover {
    transform: rotate(0deg) scale(1.05);
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 36px;
    font-weight: 900;
}

.hero-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 25px;
    align-items: center;
}

.badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    display: inline-block;
    line-height: 1;
}

.badge-green {
    background-color: #CCFF00; /* Neon green */
}

.badge-blue {
    background-color: #00FFFF; /* Cyan */
}

.badge-pink {
    background-color: #FF66CC;
    color: white;
}

.badge-orange {
    background-color: var(--secondary);
    color: white;
}

.badge-red {
    background-color: #ff4757;
    color: white;
}

.badge-purple {
    background-color: #5f27cd;
    color: white;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 120%;
    height: auto;
    margin-right: -100px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Floating Address Search */
.address-search-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.address-search-box {
    background: rgba(44, 30, 74, 0.85); /* Dark translucent */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.address-search-box h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
}

.input-group i {
    color: var(--primary);
    font-size: 20px;
    margin-left: 20px;
    position: absolute;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    outline: none;
}

.btn-sorgula {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    right: 5px;
}

.btn-sorgula:hover {
    background: #d97816;
}

/* Sub Hero */
.sub-hero {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 60px auto;
    position: relative;
    z-index: 2;
}

.sub-hero h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.sub-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* Tabs Section */
.tabs-section {
    position: relative;
    z-index: 20;
    margin-top: 40px;
}

.tabs-wrapper {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 20px 40px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.tabs li {
    padding: 15px 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.tabs li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    margin-right: 8px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}
.pricing-card {
    background: var(--white);
    border: 1px solid rgba(56, 48, 115, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.pricing-card:hover {
    box-shadow: 0 20px 50px rgba(56, 48, 115, 0.15);
    transform: translateY(-10px);
    border-color: rgba(56, 48, 115, 0.2);
}
.pricing-icon {
    display: none; /* Removed the diamond icon */
}
.pricing-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.pricing-card .price {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    padding-bottom: 25px;
    border-bottom: 2px dashed rgba(0,0,0,0.06);
}
.pricing-card .price small:first-child {
    font-size: 24px;
    margin-top: 5px;
    margin-right: 5px;
    color: var(--text-muted);
}
.pricing-card .price small:last-child {
    font-size: 16px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 5px;
}
.pricing-features {
    text-align: left;
    margin-bottom: 35px;
    flex-grow: 1;
}
.pricing-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li i {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.15);
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
}
.btn-outline {
    display: block;
    width: 100%;
    padding: 15px 0;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    text-align: center;
    text-decoration: none;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(56, 48, 115, 0.2);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 0;
    background: #25D366;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f0f2f5;
    text-align: center;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.process-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    text-align: center;
}
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--secondary);
}
.process-card .process-icon {
    font-size: 36px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.process-card:hover .process-icon {
    transform: scale(1.1);
}
.process-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
    display: inline-block;
}
.process-card h4 {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Responsive */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    outline: none;
}
.mobile-online-btn {
    display: none !important;
}

@media (max-width: 992px) {
    .mobile-menu-btn { display: block; }
    
    .nav-right .btn-online-islemler,
    .nav-right .search-btn { 
        display: none; 
    }
    
    .header {
        position: relative;
    }
    
    .nav-links { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        border-radius: 0 0 24px 24px;
        text-align: center;
        gap: 12px;
        z-index: 9999;
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px;
        border-radius: 16px;
        font-size: 16px;
        background: rgba(56, 48, 115, 0.04);
        border: none;
    }
    
    .nav-links a.mobile-online-btn {
        display: block !important;
        background: var(--primary);
        color: var(--white);
        margin-top: 10px;
        font-weight: 800;
        font-size: 16px;
    }
    
    .hero-container { flex-direction: column; text-align: center; }
    .hero-image { display: none; }
    .price-box { transform: none; }
    .price-box:hover { transform: scale(1.05); }
    .address-search-box { margin: 0 20px; width: auto; }
}

/* Contact Section & Footer Styles */
.contact-section {
    padding: 80px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-desc {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.item-label {
    display: block;
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
}

.item-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.contact-form-wrapper {
    position: relative;
    z-index: 5;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-card p {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s;
}

.form-group textarea {
    padding-left: 15px;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
}

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e67e1a;
    transform: translateY(-3px);
}

.contact-geometric-shape {
    position: absolute;
    right: -100px;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--secondary);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    opacity: 0.1; /* Light version by default */
}

/* Main Footer */
/* Main Footer - Light Theme for better logo visibility */
.footer {
    background: #f8f9fc; /* Very light blue/gray */
    color: var(--text-dark);
    padding: 80px 0;
    border-top: 1px solid #e1e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    font-weight: 800;
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.join-us {
    margin-top: 20px;
    color: var(--secondary) !important;
    font-weight: 700;
}

.footer-email {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin: 10px 0 20px;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.social-links a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.support-label {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

.support-number {
    color: var(--secondary);
    font-size: 26px;
    font-weight: 900;
    text-decoration: none;
}

/* Bottom Bar */
.bottom-bar {
    background: var(--primary);
    padding: 20px 0;
    position: relative;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-bar p {
    color: white;
    font-size: 14px;
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: 0.3s;
}
}

.bottom-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.scroll-top {
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.scroll-top:hover {
    top: -30px;
}

/* Mobile Footer Adjustments */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-geometric-shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group input, 
    .form-group select, 
    .form-group textarea {
        font-size: 16px !important; /* Prevents auto-zoom on iOS */
    }

    /* Additional Mobile Polishing */
    .hero-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .hero-content h1 div, 
    .hero-content h1 span {
        font-size: 1.6rem !important;
        line-height: 1.2;
        display: block;
        max-width: 100%;
    }
    .hero-content h1 strong {
        font-size: 2rem !important;
        display: block;
        margin-top: 5px;
    }
    .hero-badges {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }
    .hero-badges::-webkit-scrollbar {
        display: none;
    }
    .badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    .tabs-wrapper {
        padding: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .tabs {
        flex-wrap: nowrap;
        width: max-content;
        gap: 20px;
    }
    .tabs li {
        white-space: nowrap;
        font-size: 13px;
    }
    .section-title {
        font-size: 26px;
    }
    .pricing-grid {
        padding: 0 15px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .contact-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content h1 strong {
        font-size: 2.2rem;
    }
    .price-box {
        padding: 10px 20px;
    }
    .price-value {
        font-size: 28px;
    }
}

/* Perfect Mobile Polish */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    overflow-x: hidden; /* Prevent horizontal scroll */
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .logo img {
        max-height: 60px !important; /* Slightly smaller logo on mobile */
    }
    
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content h1 div, 
    .hero-content h1 span,
    .hero-content h1 strong {
        word-break: break-word;
        white-space: normal;
    }

    .address-search-box {
        margin: 20px 0 !important;
        width: 100% !important;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card .price {
        font-size: 38px; /* Slightly smaller price on mobile */
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    /* Fixed overlaps and spacing */
    .section-title {
        font-size: 24px !important;
        padding: 0 10px;
    }

    .process-card {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    /* Mobile Header Cleanup */
    .header .contact-stack, 
    .header .btn-online-islemler {
        display: none !important;
    }

    .navbar {
        justify-content: space-between !important;
        padding: 0 15px;
        flex: 1;
    }

    .nav-right {
        gap: 0;
        flex: 0;
    }

    .logo img {
        max-height: 50px !important;
        margin: 0 !important;
    }

    .mobile-menu-btn {
        display: block !important;
        font-size: 28px;
        color: var(--primary);
        background: none;
        border: none;
        padding: 5px;
        cursor: pointer;
    }

    /* Modern Mobile Menu (Slide from Right) */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100% !important; 
        left: auto !important; 
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        z-index: 10000;
        padding: 60px 20px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.2);
        gap: 10px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
    }

    .nav-links.active {
        right: 0 !important;
        visibility: visible;
    }

    .menu-close-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        left: 20px;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--primary);
        cursor: pointer;
        padding: 10px;
        z-index: 10001;
    }

    .mobile-contact-header {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
        margin-top: 30px;
    }
    .nav-links a {
        background: #f4f6f9;
        color: var(--primary) !important;
        padding: 14px !important;
        border-radius: 12px;
        text-align: center;
        font-weight: 700;
        margin: 0 !important;
        width: 100%;
        transition: 0.3s;
        font-size: 15px;
    }

    .nav-links a:hover {
        background: var(--secondary);
        color: white !important;
    }

    /* Fixed Online Islemler Button */
    .nav-links .mobile-online-btn {
        background: var(--primary) !important;
        color: white !important;
        margin-top: 10px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-height: 50px;
    }

    .mobile-contact-header {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .mobile-contact-header .contact-row {
        background: #f8f9fa;
        padding: 12px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--primary);
        text-decoration: none;
        border: 1px solid #eee;
    }

    .mobile-contact-header .whatsapp-row {
        background: #25d366;
        color: white;
        border: none;
    }
}
