/* Bilsan Bilişim - Custom Styles */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #307EC3;
    --primary-light: #5BA3D0;
    --primary-dark: #1A5A8A;
    --primary-rgba-10: rgba(48, 126, 195, 0.1);
    --primary-rgba-15: rgba(48, 126, 195, 0.15);
    --primary-rgba-20: rgba(48, 126, 195, 0.2);
    --primary-rgba-25: rgba(48, 126, 195, 0.25);
    --accent-color: #4A5568;
    --accent-dark: #2D3748;
    --accent-light: #68789A;
    --light-gray: #F8F9FA;
    --dark-color: #212529;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(48, 126, 195, 0.1);
}

/* ===== GLOBAL STYLES ===== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    padding-top: 80px; /* Fixed navbar için */
}

/* Custom Bootstrap Colors */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}

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

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    transition: var(--transition);
}

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

.text-accent {
    color: var(--accent-color) !important;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
    z-index: 9999 !important;
    background-color: var(--white) !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 30px rgba(48, 126, 195, 0.15);
    padding: 0.7rem 0;
}

.navbar.fixed-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important;
}

.navbar-brand img {
    height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--accent-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-dark .navbar-toggler {
    border-color: var(--accent-color);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234A5568' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-nav .nav-link {
    color: var(--accent-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-light .navbar-toggler {
    border-color: var(--accent-color);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234A5568' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
}

.page-header .container {
    height: 100%;
}

.page-header .row {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .col-12 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 25vh;
}

.page-header .display-4 {
    margin-bottom: 1rem;
}

.page-header .lead {
    margin-bottom: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.min-vh-30 {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-slider {
    height: 100vh;
}

.hero-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 0;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-bg-2 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.hero-bg-3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-badge i {
    color: #FFD700;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Hero Services Icons */
.hero-services {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.9;
    transition: var(--transition);
    cursor: pointer;
}

.service-icon-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.service-mini-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-icon-item:hover .service-mini-icon {
    background: var(--white);
    transform: scale(1.1);
}

.service-mini-icon i {
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}

.service-icon-item:hover .service-mini-icon i {
    color: var(--primary-color);
}

.service-icon-item span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-buttons {
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Tech Grid */
.tech-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
}

/* Tech Cards */
.tech-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

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

.tech-card-1 {
    animation-delay: 0s;
}

.tech-card-2 {
    animation-delay: 1.5s;
}

.tech-card-3 {
    animation-delay: 3s;
}

.tech-card-4 {
    animation-delay: 4.5s;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.tech-card:hover .tech-icon {
    background: var(--white);
    transform: scale(1.1);
}

.tech-icon i {
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}

.tech-card:hover .tech-icon i {
    color: var(--primary-color);
}

.tech-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-desc {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.3;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAround 8s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-item i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.float-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.float-2 {
    top: 70%;
    left: 30%;
    animation-delay: 2s;
}

.float-3 {
    top: 40%;
    right: 25%;
    animation-delay: 4s;
}

.float-4 {
    top: 60%;
    right: 35%;
    animation-delay: 6s;
}

.float-5 {
    top: 25%;
    right: 45%;
    animation-delay: 1s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.5; }
    25% { transform: translateY(-15px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 1; }
    75% { transform: translateY(-20px) rotate(270deg); opacity: 0.6; }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: lineFlow 4s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 25%;
    width: 50%;
    animation-delay: 0s;
}

.line-2 {
    top: 70%;
    left: 25%;
    width: 50%;
    animation-delay: 1s;
}

.line-3 {
    top: 25%;
    left: 40%;
    width: 1px;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation-delay: 2s;
}

.line-4 {
    top: 25%;
    right: 40%;
    width: 1px;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation-delay: 3s;
}

@keyframes lineFlow {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

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

/* Text accent on blue backgrounds should be white */
.hero-content .text-accent,
.cta-section .text-accent,
.page-header .text-accent {
    color: var(--white) !important;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: visible;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--primary-rgba-10);
    padding: 2rem;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--primary-rgba-20);
}

.service-card-home {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.service-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--primary-rgba-20);
}

.service-card-home.featured {
    border-top-color: var(--accent-color);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.service-card-home.featured::before {
    content: '★';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
}

.service-icon-home {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card-home:hover .service-icon-home {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.service-icon-home i {
    font-size: 2rem;
    color: var(--white);
}

.service-card-home h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.service-card-home p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-home .btn {
    margin-top: auto;
}

/* ===== ADVANTAGE CARDS ===== */
.advantage-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-rgba-15);
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: #6c757d;
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--primary-rgba-15);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-rgba-25);
}

.contact-info {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: #6c757d;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--accent-color) !important;
}

.footer img {
    height: 50px !important;
}

.footer a {
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-color) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Mobilde daha küçük navbar */
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .page-header {
        min-height: 25vh;
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .page-header .row {
        min-height: 25vh;
    }
    
    .page-header .col-12 {
        min-height: 25vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-visual {
        margin-top: 2rem;
        height: 400px;
    }
    
    .tech-grid {
        padding: 1rem;
        gap: 1rem;
    }
    
    .tech-card {
        padding: 1rem 0.75rem;
        min-height: 100px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .tech-icon i {
        font-size: 1rem;
    }
    
    .tech-title {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .tech-desc {
        font-size: 0.7rem;
    }
    
    .float-item {
        width: 30px;
        height: 30px;
    }
    
    .float-item i {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card-home {
        padding: 1.5rem;
    }
    
    .service-icon-home {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-home i {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-icons i {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .footer img {
        height: 40px !important;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 65px; /* Küçük ekranlarda daha küçük */
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .page-header {
        min-height: 20vh;
        padding-top: 70px;
        padding-bottom: 20px;
    }
    
    .page-header .row {
        min-height: 20vh;
    }
    
    .page-header .col-12 {
        min-height: 20vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .tech-card {
        padding: 0.75rem;
        min-height: 80px;
        flex-direction: row;
        text-align: left;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.75rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .tech-icon i {
        font-size: 0.9rem;
    }
    
    .tech-title {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .tech-desc {
        font-size: 0.7rem;
        margin: 0;
    }
    
    .floating-elements {
        display: none; /* Hide floating elements on very small screens */
    }
    
    .connection-lines {
        display: none; /* Hide connection lines on small screens */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card-home {
        padding: 1rem;
    }
    
    .service-icon-home {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-home i {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .advantage-card {
        padding: 1rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .footer img {
        height: 35px !important;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.aos-animate {
    transition-duration: 1s;
}

/* ===== UTILITY CLASSES ===== */
.min-vh-100 {
    min-height: 100vh;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-image {
    text-align: center;
    position: relative;
}

.image-placeholder {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
}

.image-placeholder i {
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-box:hover {
    background: var(--primary-color);
    color: var(--white);
}

.stat-box:hover h4 {
    color: var(--white) !important;
}

.stat-box:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Mission & Vision Cards */
.mission-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--primary-rgba-20);
}

.mission-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mission-card:hover .mission-icon i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.mission-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.mission-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

/* Value Cards */
.value-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid var(--primary-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--primary-rgba-20);
    border-top-color: var(--accent-color);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-card:hover .value-icon i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Statistics Counter */
.stat-counter {
    padding: 1rem;
    transition: var(--transition);
}

.stat-counter:hover {
    transform: scale(1.05);
}

.stat-counter h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-counter .display-4 {
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 1rem;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

/* ===== RESPONSIVE FOR ABOUT PAGE ===== */
@media (max-width: 768px) {
    .mission-card,
    .value-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .mission-icon i,
    .value-icon i {
        font-size: 2.5rem;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .stat-counter .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .mission-card,
    .value-card {
        padding: 1rem;
    }
    
    .mission-icon i,
    .value-icon i {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* ===== MAP SECTION ===== */
.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(48, 126, 195, 0.15);
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Tam sayfa genişlik için container-fluid kullanıyoruz */
.container-fluid .map-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

#google-map {
    min-height: 500px;
}

/* Map Info Overlay */
.map-info-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
}

.map-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.map-info-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-info-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.map-info-buttons {
    margin-top: 1rem;
}

/* Mobile responsive map */
@media (max-width: 768px) {
    #google-map {
        min-height: 350px;
    }
    
    .map-info-overlay {
        position: static;
        max-width: 100%;
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .map-info-card {
        padding: 1rem;
    }
    
    .map-info-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    #google-map {
        min-height: 300px;
    }
}

/* ===== QUICK CONTACT CARDS ===== */
.quick-contact-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--primary-rgba-20);
    border-top-color: var(--accent-color);
}

.quick-contact-icon {
    margin-bottom: 1.5rem;
}

.quick-contact-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.quick-contact-card:hover .quick-contact-icon i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.quick-contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.quick-contact-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* ===== FAQ ACCORDION ===== */
.accordion-item {
    background: var(--white);
    border: 1px solid var(--primary-rgba-10);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem var(--primary-rgba-25);
    border: none;
}

.accordion-button::after {
    transition: var(--transition);
}

.accordion-body {
    background: var(--light-gray);
    padding: 1.5rem;
    color: #6c757d;
    line-height: 1.6;
}

/* ===== FORM ENHANCEMENTS ===== */
.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-rgba-25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem var(--primary-rgba-25);
}

.form-check-label {
    color: #6c757d;
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-color);
}

/* ===== RESPONSIVE FOR CONTACT PAGE ===== */
@media (max-width: 768px) {
    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .quick-contact-icon i {
        font-size: 2.5rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .map-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .quick-contact-card {
        padding: 1rem;
    }
    
    .quick-contact-icon i {
        font-size: 2rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* ===== SERVICE CARDS (For Other Pages) ===== */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: visible;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--primary-rgba-10);
    padding: 2rem;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--primary-rgba-20);
}

.featured-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-card::before {
    content: '★';
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent-color);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-content {
    margin-bottom: 1rem;
}

.service-content h3,
.service-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content h3 {
    font-size: 1.5rem;
}

.service-content h4 {
    font-size: 1.3rem;
}

.service-features,
.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li,
.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--primary-rgba-10);
    color: var(--dark-color);
}

.service-features li:last-child,
.service-list li:last-child {
    border-bottom: none;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '▸';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== SERVICE CATEGORIES ===== */
.category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.category-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.category-title i {
    color: var(--white);
    margin-right: 1rem;
}

.category-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Category specific colors */
#bt-solutions .category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

#cloud-solutions .category-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

#web-software .category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px var(--primary-rgba-15);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--light-gray);
    color: var(--accent-color);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--primary-rgba-10);
}

/* Mobile Responsiveness for Categories */
@media (max-width: 768px) {
    .category-header {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-title i {
        margin-right: 0.5rem;
    }
    
    .category-desc {
        font-size: 1rem;
    }
    
    .min-vh-30 {
        min-height: 25vh;
    }
    
    .page-header .col-12 {
        min-height: 25vh;
    }
}

@media (max-width: 576px) {
    .min-vh-30 {
        min-height: 20vh;
    }
    
    .page-header .col-12 {
        min-height: 20vh;
    }
}

/* ===== PRICING STYLES ===== */
.pricing {
    text-align: center;
    margin: 1rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.featured-card .price {
    color: var(--accent-color);
}

.service-card .btn.w-100 {
    margin-top: 1rem;
}

/* Pricing responsive */
@media (max-width: 768px) {
    .price {
        font-size: 2rem;
    }
}

/* ===== PARTNERS CAROUSEL ===== */
.partners-slider {
    padding: 2rem 0;
    overflow: hidden;
}

.partners-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Sürekli kayan animasyon */
@keyframes slide-infinite {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.infinite-scroll {
    display: flex;
    animation: slide-infinite 30s linear infinite;
    width: calc(200%);
}

.infinite-scroll:hover {
    animation-play-state: paused;
}

.infinite-scroll .partner-logo {
    flex: 0 0 auto;
    margin-right: 2rem;
}

.partner-logo {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 120px;
    border: 1px solid var(--primary-rgba-10);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-rgba-15);
}

.partner-logo img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    filter: grayscale(80%);
    transition: var(--transition);
    object-fit: contain;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-logo h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-logo p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Partners carousel responsive */
@media (max-width: 768px) {
    .partner-logo {
        padding: 1rem;
        height: 100px;
    }
    
    .partner-logo img {
        max-height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        padding: 0.75rem;
        height: 80px;
    }
    
    .partner-logo img {
        max-height: 40px;
        max-width: 100px;
    }
}

/* ===== TIMELINE STYLES ===== */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 250px;
}

.timeline-step:nth-child(even) {
    flex-direction: column-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 4px solid var(--white);
    box-shadow: 0 8px 25px rgba(48, 126, 195, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 3;
}

.timeline-step:nth-child(even) .timeline-icon {
    margin-bottom: 0;
    margin-top: 2rem;
}

.timeline-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.timeline-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-step:nth-child(odd) .timeline-content::before {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--white);
}

.timeline-step:nth-child(even) .timeline-content::before {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--white);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.timeline-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 4;
}

/* Hover Effects */
.timeline-step:hover .timeline-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px var(--primary-rgba-20);
}

/* Responsive Timeline */
@media (max-width: 992px) {
    .timeline-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .timeline-line {
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    }
    
    .timeline-step {
        flex-direction: row !important;
        max-width: 100%;
        align-items: center;
    }
    
    .timeline-step:nth-child(even) {
        flex-direction: row-reverse !important;
    }
    
    .timeline-icon {
        margin: 0 2rem;
        flex-shrink: 0;
    }
    
    .timeline-step:nth-child(even) .timeline-icon {
        margin: 0 2rem;
    }
    
    .timeline-content {
        flex: 1;
    }
    
    .timeline-content::before {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
    }
    
    .timeline-step:nth-child(odd) .timeline-content::before {
        left: -12px;
        right: auto;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 12px solid var(--white);
        border-left: none;
    }
    
    .timeline-step:nth-child(even) .timeline-content::before {
        right: -12px;
        left: auto;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 12px solid var(--white);
        border-right: none;
    }
}

@media (max-width: 768px) {
    .timeline-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-step:nth-child(even) {
        flex-direction: column !important;
    }
    
    .timeline-icon {
        margin: 0 0 1.5rem 0 !important;
        width: 70px;
        height: 70px;
    }
    
    .timeline-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content::before {
        top: -12px !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translateX(-50%) !important;
        border-left: 12px solid transparent !important;
        border-right: 12px solid transparent !important;
        border-bottom: 12px solid var(--white) !important;
        border-top: none !important;
    }
}

/* ===== VALUES HEXAGON CARDS ===== */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.hexagon-card {
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.hexagon-shape {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    margin: 0 auto 2rem;
    position: relative;
    transform: rotate(30deg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px var(--primary-rgba-15);
}

.hexagon-content {
    transform: rotate(-30deg);
    color: var(--white);
}

.hexagon-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.hexagon-content .number {
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.8;
}

.hexagon-card:hover .hexagon-shape {
    transform: rotate(30deg) scale(1.05);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.hexagon-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.hexagon-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* ===== WHY CHOOSE US FEATURE CARDS ===== */
.why-choose-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-highlight {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -5px;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-highlight:hover::before {
    opacity: 1;
    left: -2px;
    top: -2px;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    border-left-color: transparent;
    color: var(--white);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-highlight:hover .feature-number {
    background: var(--white);
    color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-highlight:hover .feature-icon {
    color: var(--white);
}

.feature-highlight h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
    transition: var(--transition);
}

.feature-highlight:hover h4 {
    color: var(--white);
}

.feature-highlight p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    transition: var(--transition);
}

.feature-highlight:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hexagon-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .hexagon-shape {
        width: 150px;
        height: 150px;
    }
    
    .hexagon-content i {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-highlight {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hexagon-shape {
        width: 120px;
        height: 120px;
    }
    
    .hexagon-content i {
        font-size: 2rem;
    }
    
    .feature-highlight {
        padding: 1.5rem;
    }
}

/* ===== KVKK MODAL ===== */
.kvkk-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.kvkk-modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.kvkk-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kvkk-modal-body {
    padding: 2rem;
    line-height: 1.6;
}

.kvkk-close {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}

.kvkk-close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .kvkk-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .kvkk-modal-header,
    .kvkk-modal-body {
        padding: 1rem;
    }
} 