:root {
    --primary: #0f2b48;
    --secondary: #1d446c;
    --accent: #0D9CED;
    --accent-hover: #0e1951;
    --text-dark: #2d3748;
    --text-light: #ffffff;
    --bg-light: #f7fafc;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Mobil menü açıkken body scroll'u engelle */
body.menu-open {
    overflow: hidden;
}

/* --- TOPBAR --- */
.topbar {
    background-color: var(--accent);
    color: var(--text-light);
    font-size: 13px;
    padding: 8px 20px;
}

.topbar-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-info {
    display: flex;
    gap: 20px;
}

.topbar-info a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.topbar-info a:hover {
    color: var(--accent);
}

/* --- HEADER / NAVBAR --- */
header {
    position: sticky;
    top: 0;
    background-color: rgba(15, 43, 72, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    min-width: 160px;
}

.logo span {
    color: var(--accent);
}

/* --- MEGA DROP DOWN MENU --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.nav-item:hover>a {
    color: var(--accent);
}

/* Dropdown Genel Yapısı */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown a:hover {
    background-color: var(--bg-light);
    color: var(--accent);
    padding-left: 25px;
}

/* İki Sütunlu Geniş Dropdown */
.dropdown.wide-menu {
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 5px;
}

.dropdown.wide-menu h5 {
    grid-column: span 2;
    font-size: 12px;
    text-transform: uppercase;
    color: #a0aec0;
    letter-spacing: 1px;
    margin-bottom: 5px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 5px;
}

.nav-btn {
    background-color: var(--accent);
    padding: 8px 18px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px #0e1951;
}

.nav-btn:hover {
    background-color: var(--accent-hover);
    color: var(--text-light) !important;
}

        /* --- MODERN SLIDER (HERO) YAPISI --- */
        .slider-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            background-color: #000;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .slide::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000000;
		background: linear-gradient(1deg, rgba(20, 77, 99, 0.318) 10%, rgba(0, 0, 0, 0.74) 100%);
		z-index: 1;
        }
        .slide.active {
            opacity: 1;
            visibility: visible;
        }
        .slider-content {
            position: relative;
            z-index: 2;
            color: var(--text-light);
            padding: 0 20px;
            max-width: 850px;
            transform: translateY(30px);
            transition: transform 0.8s ease;
        }
        .slide.active .slider-content {
            transform: translateY(0);
        }
        .slider-content h1 {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .slider-content p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.9;
        }
        
        /* Slider Navigasyon Okları */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }
        .slider-arrow:hover {
            background: var(--accent);
            box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
        }
        .arrow-prev { left: 20px; }
        .arrow-next { right: 20px; }

        /* Slider Noktaları (Dots) */
        .slider-dots {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
        }
        .dot.active {
            background: var(--accent);
            width: 28px;
            border-radius: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--accent);
            color: var(--text-light);
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
        }
        .btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
        }

@media (max-width: 768px) {
    .slider-container {
        height: 70vh;
        min-height: 450px;
    }

    .slide .slider-content h1 {
        font-size: 28px;
    }

    .slide .slider-content p {
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent);
    color: var(--text-light);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px #0e1951;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* --- GENEL SECTİON YAPISI --- */
section {
    padding: 90px 20px;
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* --- HAKKIMIZDA & SÜRDÜRÜLEBİLİRLİK --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 20px;
}

.sus-box {
    background-color: rgba(29, 68, 108, 0.05);
    padding: 30px;
    border-left: 5px solid var(--accent);
    border-radius: 0 15px 15px 0;
    margin-top: 30px;
}

/* --- FAALİYET ALANLARIMIZ --- */
.faaliyet-section {
    background-color: var(--bg-light);
}

.faaliyet-desc {
    text-align: center;
    max-width: 800px;
    margin: -40px auto 50px auto;
    font-size: 16px;
    color: #4a5568;
}

.grid-faaliyet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.faaliyet-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.faaliyet-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.faaliyet-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
    background: rgba(29, 68, 108, 0.05);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.faaliyet-card:hover .faaliyet-icon {
    background: var(--accent);
    color: white;
}

.faaliyet-card h3 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
}

/* --- FAALİYET ALANLARI (SEKTÖRLER) STİLLERİ --- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.industry-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.industry-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(15, 43, 72, 0.04);
    color: var(--primary);
    font-size: 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.industry-card:hover .industry-icon-wrapper {
    background: var(--accent);
    color: #ffffff;
    transform: rotateY(180deg);
}

.industry-card h3 {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.industry-card p {
    font-size: 12.5px;
    color: #718096;
    line-height: 1.5;
}

/* --- FOTOĞRAFLI SEKTÖRLER GRİD STİLLERİ --- */
.industry-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-photo-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.industry-photo-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.industry-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.industry-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-photo-card:hover .industry-img-box img {
    transform: scale(1.08);
}

.industry-content {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.industry-content h3 {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.industry-content p {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
    flex-grow: 1;
}



/* --- ÜRÜNLERİMİZ --- */
.products-section {
    background-color: var(--bg-light);
}

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

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid #edf2f7;
    text-align: center;
    padding: 25px 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.product-card i {
    font-size: 45px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 16px;
    color: var(--primary);
}

/* --- YEDEK PARÇA SECTİON --- */
.parts-section {
    background-color: #ffffff;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.part-badge {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    box-shadow: var(--card-shadow);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.part-badge:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* --- YENİ TEKNİK SERVİS ALANI STİLLERİ --- */
.tech-layout-new {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.tech-info-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
}

.tech-info-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.tech-info-card>p {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 35px;
}

.tech-badges-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-badge-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tech-badge-item i {
    font-size: 22px;
    color: var(--accent);
    background: rgba(255, 107, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.tech-badge-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.tech-badge-item p {
    font-size: 13.5px;
    color: #718096;
}

.tech-action-card {
    background: var(--primary);
    padding: 45px;
    border-radius: 16px;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(15, 43, 72, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-action-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.tech-action-card>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14.5px;
    margin-bottom: 30px;
}

.action-buttons-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-link-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-link-btn i {
    font-size: 26px;
    flex-shrink: 0;
}

.action-link-btn div {
    display: flex;
    flex-direction: column;
}

.action-link-btn span {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-link-btn strong {
    font-size: 16px;
    margin-top: 2px;
}

.phone-btn {
    background: rgba(255, 255, 255, 0.05);
}

.phone-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.02);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
    transform: scale(1.02);
}

.email-btn {
    background: rgba(255, 255, 255, 0.05);
}

.email-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.02);
}

/* --- GOOGLE REVIEWS SECTION STİLLERİ --- */
.reviews-layout {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.google-rating-badge {
    background: var(--bg-light);
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 100px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin: 15px 0 5px 0;
}

.stars-row {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 8px;
}

.total-reviews {
    font-size: 13px;
    color: #718096;
    display: block;
    margin-bottom: 25px;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.write-review-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.user-info h4 {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
}

.user-info span {
    font-size: 12px;
    color: #a0aec0;
    display: block;
}

.verified-badge {
    font-size: 12px;
    color: #38a169;
    background: rgba(56, 161, 105, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.review-stars {
    color: #ffc107;
    font-size: 13px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
}

/* --- YENİ İLETİŞİM & HARİTA ALANI STİLLERİ --- */
.contact-map-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 20px;
    align-items: stretch;
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
    min-height: 450px;
    position: relative;
}

.contact-map-wrapper iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-info-wrapper {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-wrapper h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-desc {
    color: #718096;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--accent);
    background: rgba(255, 107, 0, 0.08);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover i {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.05);
}

.contact-info-item h4 {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

.contact-info-item p a {
    color: #4a5568;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item p a:hover {
    color: var(--accent);
}

/* --- YENİ SADECE KATALOG ALANI STİLLERİ --- */
.pure-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catalog-download-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.catalog-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.catalog-icon-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px;
    text-align: center;
    color: #ffffff;
    font-size: 55px;
    position: relative;
}

.catalog-icon-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

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

.catalog-meta {
    font-size: 11px;
    color: #a0aec0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.catalog-download-card h3 {
    font-size: 17px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.catalog-download-card p {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.catalog-actions {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
}

.catalog-btn {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.catalog-btn.download:hover {
    background-color: var(--accent);
}

.catalog-btn.view {
    background-color: #edf2f7;
    color: var(--text-dark);
}

.catalog-btn.view:hover {
    background-color: #e2e8f0;
    color: var(--primary);
}

/* --- FOOTER --- */
footer {
    background: #071524;
    color: #a0aec0;
    padding: 60px 20px 20px 20px;
    font-size: 14px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
}

/* --- NASIL ÇALIŞIR SECTİON STİLLERİ --- */
.how-it-works-section {
    background-color: #ffffff;
    position: relative;
}

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

.step-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid #edf2f7;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    border-color: var(--accent);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.step-icon {
    font-size: 45px;
    transition: var(--transition);
}

.step-icon.primary {
    color: var(--primary);
}

.step-icon.accent {
    color: var(--accent);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -15px;
    background: var(--secondary);
    color: #ffffff;
    width: 24px;
    height: 24px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-card h4 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

/* İstatistik Bölümü */
.stat-section {
    position: relative;
    padding: 100px 0;
	background: linear-gradient(135deg, #0a2b3e 0%, #142f4c 100%);    
	overflow: hidden;
}

/* Arka Plan Efekti */
.stat-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: backgroundMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgb(19 46 76);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

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

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #0d9ced;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: #0d9ced;
    margin-left: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.stat-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0d9ced, transparent);
    margin: 20px auto 0;
    transition: width 0.3s;
}

.stat-item:hover .stat-line {
    width: 100px;
}
/* Dalga efekti */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(255,215,0,0.2));
    transition: height 0.3s;
    z-index: -1;
}

.stat-item:hover::after {
    height: 100%;
}

/* Işık efekti */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255,215,0,0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255,215,0,0.6);
    }
}

.stat-item:hover {
    animation: glow 1s ease-in-out infinite;
}
/* Responsive */
@media (max-width: 768px) {
    .stat-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-icon {
        font-size: 36px;
    }
    
    .stat-item p {
        font-size: 14px;
    }
}



/* --- MOBIL MENU BUTTON --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
    position: relative;
}

/* --- OVERLAY (Menü açıkken arka plan karartma) --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* ============================================ */
/* RESPONSIVE MEDIA QUERIES */
/* ============================================ */

/* Tablet ve Mobil için (1024px ve Altı) */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        position: relative;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 25px 40px 25px;
        gap: 0;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-item>a {
        padding: 15px 0;
        width: 100%;
        justify-content: space-between;
        font-size: 15px;
    }

    /* Mobilde Dropdown Yapısı */
    .dropdown,
    .dropdown.wide-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none !important;
        background-color: rgba(0, 0, 0, 0.15);
        box-shadow: none;
        width: 100%;
        min-width: 100% !important;
        padding: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        border-top: none;
        border-radius: 0;
        grid-template-columns: 1fr !important;
    }

    .dropdown.active {
        display: block !important;
        margin-bottom: 10px;
    }

    .dropdown a {
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
    }

    .dropdown a:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--accent);
        padding-left: 25px;
    }

    .dropdown.wide-menu h5 {
        grid-column: span 1;
        padding: 12px 20px 5px 20px;
        color: var(--accent);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-btn {
        margin-top: 20px;
        text-align: center;
        display: block !important;
        width: 100%;
        border-radius: 6px;
    }

    /* KURUMSAL BÖLÜM MOBİL DÜZENLEMESİ - BURASI ÖNEMLİ */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-grid .about-text {
        order: 1;
    }

    .about-grid .reveal-right {
        order: 2;
        width: 100% !important;
    }

    .about-grid .reveal-right>div {
        height: auto !important;
        max-height: 280px !important;
        width: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        border-radius: 16px !important;
    }

    /* Diğer responsive düzenlemeler */
    .slider-content h1 {
        font-size: 32px;
    }

    .slider-content p {
        font-size: 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pure-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .google-rating-badge {
        position: relative;
        top: 0;
        max-width: 350px;
        margin: 0 auto;
    }

    .review-card:hover {
        transform: none;
    }

    .contact-map-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map-wrapper {
        min-height: 350px;
    }

    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .tech-layout-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-info-card,
    .tech-action-card {
        padding: 30px 20px;
    }

    .grid-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil için ekstra ince ayar (768px ve Altı) */
@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-card {
        padding: 25px 15px;
    }

    .about-grid .reveal-right>div {
        max-height: 240px !important;
    }

    .about-text h3 {
        font-size: 22px !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    .timeline-item {
        flex-direction: column;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}

/* Küçük Telefonlar için (480px ve Altı) */
@media (max-width: 480px) {
    .nav-links {
        width: 85%;
        padding: 80px 20px 30px 20px;
    }

    .topbar-info {
        font-size: 11px;
        gap: 12px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-photo-grid {
        grid-template-columns: 1fr;
    }

    .industry-img-box {
        height: 200px;
    }

    .pure-catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid .reveal-right>div {
        max-height: 200px !important;
    }

    .about-text h3 {
        font-size: 20px !important;
    }

    .about-text p {
        font-size: 14px !important;
    }

    .sus-box h4 {
        font-size: 15px !important;
    }

    .sus-box p {
        font-size: 12.5px !important;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobil için ekstra ince ayar (768px ve Altı) */
@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-card {
        padding: 25px 15px;
    }

    .about-grid .reveal-right>div {
        height: 280px !important;
    }

    .about-text h3 {
        font-size: 22px !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    .timeline-item {
        flex-direction: column;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}

/* Küçük Telefonlar için (480px ve Altı) */
@media (max-width: 480px) {
    .nav-links {
        width: 85%;
        padding: 80px 20px 30px 20px;
    }

    .topbar-info {
        font-size: 11px;
        gap: 12px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-photo-grid {
        grid-template-columns: 1fr;
    }

    .industry-img-box {
        height: 200px;
    }

    .pure-catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid .reveal-right>div {
        height: 220px !important;
    }

    .about-text h3 {
        font-size: 20px !important;
    }

    .about-text p {
        font-size: 14px !important;
    }

    .sus-box h4 {
        font-size: 15px !important;
    }

    .sus-box p {
        font-size: 12.5px !important;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* Büyük Ekranlar için (1200px ve Altı) */
@media (max-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 992px için düzenlemeler */
@media (max-width: 992px) {
    .industry-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pure-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-layout {
        grid-template-columns: 1fr;
    }

    .tech-layout-new {
        grid-template-columns: 1fr;
    }
}

/* 576px için düzenlemeler */
@media (max-width: 576px) {
    .industry-photo-grid {
        grid-template-columns: 1fr;
    }

    .industry-img-box {
        height: 200px;
    }
}

.contact-hero {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        padding: 80px 0;
        text-align: center;
        color: white;
    }
    .contact-hero h1 {
        color: white;
        font-size: 48px;
        margin-bottom: 20px;
    }
    .contact-hero p {
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
    }
    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: -40px;
        margin-bottom: 60px;
    }
    .info-card {
        background: white;
        padding: 35px 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: var(--card-shadow);
        border: 1px solid #edf2f7;
        transition: var(--transition);
    }
    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.12);
        border-color: var(--accent);
    }
    .info-icon {
        width: 75px;
        height: 75px;
        background: var(--bg-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px auto;
        font-size: 32px;
        color: var(--accent);
        transition: var(--transition);
    }
    .info-card:hover .info-icon {
        background: var(--accent);
        color: white;
        transform: scale(1.05);
    }
    .info-card h3 {
        font-size: 20px;
        color: var(--primary);
        margin-bottom: 12px;
        font-weight: 700;
    }
    .info-card p, .info-card a {
        font-size: 15px;
        color: #4a5568;
        text-decoration: none;
        transition: var(--transition);
        line-height: 1.5;
    }
    .info-card a:hover {
        color: var(--accent);
    }
    .info-card small {
        font-size: 12px;
        color: #a0aec0;
        display: block;
        margin-top: 8px;
    }
    .contact-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    .map-wrapper {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        border: 1px solid #edf2f7;
        height: 450px;
    }
    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    .contact-details {
        background: var(--bg-light);
        border-radius: 20px;
        padding: 35px;
        box-shadow: var(--card-shadow);
    }
    .contact-details h3 {
        font-size: 24px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .contact-details > p {
        color: #718096;
        margin-bottom: 25px;
        font-size: 14px;
    }
    .detail-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e2e8f0;
    }
    .detail-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .detail-icon {
        width: 55px;
        height: 55px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--accent);
        box-shadow: var(--card-shadow);
        flex-shrink: 0;
    }
    .detail-content h4 {
        font-size: 16px;
        color: var(--primary);
        margin-bottom: 6px;
    }
    .detail-content p, .detail-content a {
        font-size: 14px;
        color: #4a5568;
        text-decoration: none;
        transition: var(--transition);
        line-height: 1.5;
    }
    .detail-content a:hover {
        color: var(--accent);
    }
    .working-hours-box {
        background: white;
        border-radius: 16px;
        padding: 20px;
        margin-top: 25px;
    }
    .working-hours-box h4 {
        font-size: 16px;
        color: var(--primary);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .hours-list {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 14px;
    }
    .hours-list span:first-child {
        color: #4a5568;
    }
    .hours-list span:last-child {
        color: var(--primary);
        font-weight: 500;
    }
    .emergency-badge {
        background: #dc2626;
        color: white;
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 11px;
        margin-left: 10px;
    }
    .social-links-section {
        text-align: center;
        padding: 50px;
        background: var(--bg-light);
        border-radius: 20px;
        margin-bottom: 40px;
    }
    .social-links-section h3 {
        font-size: 26px;
        margin-bottom: 25px;
        color: var(--primary);
    }
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 25px;
    }
    .social-icons a {
        width: 55px;
        height: 55px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--primary);
        transition: var(--transition);
        text-decoration: none;
        box-shadow: var(--card-shadow);
    }
    .social-icons a:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-5px);
    }
    .faq-section {
        margin-top: 40px;
    }
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    .faq-item {
        background: white;
        padding: 22px 25px;
        border-radius: 14px;
        border: 1px solid #edf2f7;
        cursor: pointer;
        transition: var(--transition);
    }
    .faq-item:hover {
        border-color: var(--accent);
        box-shadow: var(--card-shadow);
    }
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--primary);
        font-size: 16px;
    }
    .faq-question i {
        color: var(--accent);
        transition: var(--transition);
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        font-size: 13.5px;
        color: #718096;
        line-height: 1.6;
    }
    .faq-item.active .faq-answer {
        max-height: 200px;
        margin-top: 15px;
    }
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    @media (max-width: 992px) {
        .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
        .contact-main { grid-template-columns: 1fr; }
        .faq-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
        .contact-info-grid { grid-template-columns: 1fr; }
        .contact-hero h1 { font-size: 32px; }
        .contact-details { padding: 25px; }
        .social-links-section { padding: 30px 20px; }
        .social-icons a { width: 45px; height: 45px; font-size: 20px; gap: 15px; }
        .faq-item { padding: 18px 20px; }
    }
	
	    .about-hero {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        padding: 80px 0;
        text-align: center;
        color: white;
    }
    .about-hero h1 {
        color: white;
        font-size: 48px;
        margin-bottom: 20px;
    }
    .about-hero p {
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
    }

    .value-card {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 12px;
        box-shadow: var(--card-shadow);
        transition: var(--transition);
    }
    .value-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent);
    }
    .value-card i {
        font-size: 48px;
        color: var(--accent);
        margin-bottom: 15px;
    }
    .timeline-item {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: var(--card-shadow);
    }
    .timeline-year {
        min-width: 100px;
        font-size: 28px;
        font-weight: 700;
        color: var(--accent);
    }
    .section-badge {
        display: inline-block;
        background: rgba(14, 25, 81, 0.1);
        color: var(--accent);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .section-title-left {
        font-size: 32px;
        margin-bottom: 20px;
        color: var(--primary);
    }
    .section-title-left span {
        color: var(--accent);
    }
    @media (max-width: 768px) {
        .stat-grid { grid-template-columns: repeat(2, 1fr); }
        .timeline-item { flex-direction: column; }
        .about-hero h1 { font-size: 32px; }
    }

/* ========== SABİT İLETİŞİM BUTONLARI ========== */
.fixed-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.contact-float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.contact-float-btn i {
    font-size: 28px;
    color: white;
}

/* WhatsApp Butonu */
.contact-float-btn.whatsapp {
    background-color: #25D366;
}

.contact-float-btn.whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Ara Butonu */
.contact-float-btn.phone {
    background-color: #0D9CED;
}

.contact-float-btn.phone:hover {
    background-color: #0e1951;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(13, 156, 237, 0.4);
}

/* Hover'da tooltip (isteğe bağlı) */
.contact-float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #1a202c;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.contact-float-btn:hover::before {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* Mobil için boyutlar biraz küçülsün */
@media (max-width: 768px) {
    .contact-float-btn {
        width: 48px;
        height: 48px;
    }
    
    .contact-float-btn i {
        font-size: 24px;
    }
    
    .fixed-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .contact-float-btn {
        width: 60px;
        height: 60px;
    }
    
    .contact-float-btn i {
        font-size: 22px;
    }
}