/* Endüstriyel Renk Şeması ve Temel Stiller */
:root {
    --primary-color: #FF6B00;      /* Turuncu - endüstriyel ekipman rengi */
    --secondary-color: #2C3E50;    /* Koyu mavi-gri - endüstriyel ton */
    --accent-color: #E74C3C;       /* Kırmızı - uyarı/vurgu rengi */
    --dark-color: #1a1a1a;         /* Neredeyse siyah */
    --light-color: #f5f5f5;        /* Açık gri */
    --gray-color: #95a5a6;         /* Endüstriyel gri */
    --transition: all 0.3s ease;
    --industrial-gradient: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
}

body {
    background: #f0f2f5;
    font-family: 'Roboto', sans-serif; /* Daha endüstriyel görünüm için font değişikliği */
    padding-top: 76px; /* Navbar'ın yüksekliği kadar padding ekle */
}

.site-wrapper {
    max-width: 1500px;
    margin: 116px auto 0; /* Top bar + Navbar yüksekliği */
    background: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible; /* Navbar'ın dışarı çıkmasına izin ver */
}

/* Modern Container */
.container {
    max-width: 1400px !important;
    padding: 0 2rem;
}

/* Referanslar Sayfası Container */
.references-page-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    margin: 30px auto;
    padding: 40px;
    position: relative;
}

/* Endüstriyel Header Stili */
.navbar {
    background: var(--industrial-gradient) !important;
    border-bottom: 3px solid var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    top: 40px; /* Top bar yüksekliği */
    left: 0;
    width: 100%;
    z-index: 998;
}

/* Navbar Container Stili */
.navbar > .container {
    background: var(--industrial-gradient);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Navbar scroll efekti */
.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar.scrolled > .container {
    border-radius: 15px;
    margin-top: 0;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

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

.dropdown-menu {
    border: none;
    border-radius: 0;
    margin-top: 0;
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: rgba(255,255,255,0.9);
    padding: 0.7rem 1.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--primary-color);
    color: white;
}

/* Mobil menü düzenlemeleri */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='rgba%28255, 107, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--secondary-color);
        padding: 1rem;
        margin-top: 1rem;
    }

    .dropdown-menu {
        background: rgba(0,0,0,0.2);
        padding: 0;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .dropdown-item {
        padding: 0.7rem 2rem;
        color: rgba(255,255,255,0.9);
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar > .container {
        border-radius: 10px;
        padding: 0.5rem 1rem;
    }

    .site-wrapper {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
    }

    .site-wrapper {
        margin-top: 76px;
    }

    .top-bar {
        display: none; /* Mobilde top bar'ı gizle */
    }

    .navbar > .container {
        border-radius: 10px;
        padding: 0.5rem 1rem;
    }

    .navbar-collapse {
        background: var(--secondary-color);
        padding: 1rem;
        margin-top: 1rem;
    }

    .dropdown-menu {
        background: rgba(0,0,0,0.2);
        padding: 0;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .dropdown-item {
        padding: 0.7rem 2rem;
        color: rgba(255,255,255,0.9);
    }

    .navbar-nav {
        padding: 1rem 0;
    }
}

/* Endüstriyel Card Stili */
.card {
    border: none;
    border-radius: 0;
    border-bottom: 3px solid var(--primary-color);
    background: #fff;
 
}

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

.service-card {
    height: 100%;
}

.card-body {
    padding: 2rem;
}

/* Endüstriyel Section Başlıkları */
.section-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
}

/* Endüstriyel Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 1500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-industrial.png');
    opacity: 0.05;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin: 1.5rem 0;
    max-width: 600px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.hero-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.hero-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Hero section responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 60px 0;
        text-align: center;
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        margin: 1rem auto;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .hero-section .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 1500px) {
    .hero-section {
        max-width: 100%;
    }
}

/* Endüstriyel Butonlar */
.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

/* Endüstriyel İkonlar ve Detaylar */
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Endüstriyel Footer */
footer {
    background: var(--industrial-gradient);
    border-top: 3px solid var(--primary-color);
}

/* Endüstriyel Form Elemanları */
.form-control {
    border-radius: 0;
    border: 2px solid #ddd;
    padding: 0.8rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Endüstriyel Animasyonlar */
@keyframes industrial-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.industrial-animate {
    animation: industrial-pulse 2s infinite;
}

/* Modern Section Styles */
.section-padding {
    padding: 100px 0;
}

/* Modern List Styles */
.list-group-item {
    border: none;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.list-group-item:last-child {
    border-bottom: none;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Modern Accordion Styles */
.accordion-button {
    padding: 1.2rem;
    font-weight: 500;
    background: white;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Top Bar Styles */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.top-bar .container {
    max-width: 1400px;
    margin: 0 auto;
}

.top-contact {
    display: flex;
    align-items: center;
}

.top-contact span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.top-contact i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-social a {
    color: var(--secondary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
}

.top-social a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive Top Bar */
@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }

    .top-contact {
        justify-content: center;
        margin-bottom: 5px;
    }

    .top-contact span {
        font-size: 0.8rem;
    }

    .top-social {
        justify-content: center;
    }

    .top-contact span:last-child {
        display: none; /* Mobilde email'i gizle */
    }
}

@media (max-width: 576px) {
    .top-bar .container {
        padding: 0 10px;
    }

    .top-contact span {
        margin-right: 10px;
    }

    .top-social a {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

/* Modern Slider Styles */
#mainSlider {
    max-width: 1500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    width: 100%;
}

.carousel-caption {
    text-align: left;
    left: 10%;
    right: 10%;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    z-index: 2;
}

.industrial-label {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-caption p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.carousel-caption .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: var(--primary-color);
}

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

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin: 0 5px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        text-align: center;
        left: 5%;
        right: 5%;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        margin: 1rem auto;
    }
    
    .industrial-label {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1500px) {
    .site-wrapper {
        margin: 0;
    }
    
    .top-bar,
    .navbar,
    #mainSlider,
    footer {
        max-width: 100%;
    }
    
    #mainSlider {
        max-width: 100%;
    }
}

/* Referanslar Slider Styles */
.references-section {
    background: var(--light-color);
    padding: 80px 0;
    max-width: 1500px;
    margin: 0 auto;
}

.reference-slider {
    padding: 30px 0;
}

.reference-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 15px;
    transition: var(--transition);
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reference-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.reference-content {
    text-align: center;
}

.reference-quote {
    font-style: italic;
    color: #666;
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.reference-author {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.reference-position {
    font-size: 0.9rem;
    color: #666;
}

/* Slick slider özelleştirmeleri */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
    transition: var(--transition);
}

.slick-prev:hover, .slick-next:hover {
    background: var(--primary-color);
}

.slick-prev:hover:before, .slick-next:hover:before {
    color: white;
}

.slick-prev:before, .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    opacity: 1;
}

.slick-prev:before {
    content: '\f104';
}

.slick-next:before {
    content: '\f105';
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

@media (max-width: 768px) {
    .slick-prev {
        left: -20px;
    }
    .slick-next {
        right: -20px;
    }
}

/* Company Stats Styles */
.company-stats {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('../images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin: 60px 0;
}

.company-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-industrial.png');
    opacity: 0.05;
}

.stat-box {
    text-align: center;
    color: #fff;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
}

/* Hover efekti */
.stat-box:hover .stat-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .stat-box {
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* About Slider Styles */
.about-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-slide {
    position: relative;
}

.about-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Slick Slider Özelleştirmeleri */
.about-slider .slick-prev,
.about-slider .slick-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
    transition: var(--transition);
}

.about-slider .slick-prev {
    left: 20px;
}

.about-slider .slick-next {
    right: 20px;
}

.about-slider .slick-prev:before,
.about-slider .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}

.about-slider .slick-prev:before {
    content: '\f104';
}

.about-slider .slick-next:before {
    content: '\f105';
}

.about-slider .slick-dots {
    bottom: 20px;
}

.about-slider .slick-dots li button:before {
    color: white;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .about-slide img {
        height: 300px;
    }
    
    .about-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .about-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features .feature-item {
        justify-content: center;
    }
}

/* Map Section Styles */
.map-section {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    filter: grayscale(1);
    transition: var(--transition);
}

.map-container iframe:hover {
    filter: grayscale(0);
}

@media (max-width: 1500px) {
    .map-section {
        max-width: 100%;
    }
}

/* Career Hero Styles */
.career-hero {
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    max-width: 1500px;
    margin: 0 auto;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-dots.png');
    opacity: 0.1;
}

.career-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.career-hero .lead {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.career-features {
    margin-top: 2rem;
}

.career-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.career-features .feature-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.career-image {
    position: relative;
    z-index: 1;
}

.career-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .career-hero {
        padding: 40px 0;
        text-align: center;
    }

    .career-hero h1 {
        font-size: 2.5rem;
    }

    .career-features .feature-item {
        justify-content: center;
    }

    .career-image {
        margin-top: 2rem;
    }
}

/* Job Platforms Styles */
.job-platforms {
    padding: 60px 0;
    background: var(--light-color);
    position: relative;
}

.platform-card {
    display: block;
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 30px;
    text-decoration: none;
    color: var(--secondary-color);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    color: var(--secondary-color);
}

.platform-icon {
    margin-bottom: 20px;
}

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

.platform-icon img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.platform-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.platform-card p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.platform-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.platform-link i {
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-link i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .platform-card {
        margin-bottom: 20px;
    }
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-section.bg-light {
    background: var(--light-color);
}

.video-content {
    padding: 20px;
}

.video-content .section-title {
    margin-bottom: 25px;
}

.video-content .section-title::after {
    margin-left: 0;
}

.video-features {
    margin-top: 30px;
}

.video-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.video-features .feature-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.video-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.video-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.video-highlights li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.video-wrapper {
    padding: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .video-section {
        padding: 40px 0;
    }
    
    .video-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .video-content .section-title::after {
        margin: 15px auto;
    }
    
    .video-features .feature-item {
        justify-content: center;
    }
    
    .video-highlights li {
        justify-content: center;
    }
    
    .order-lg-1 {
        order: 2;
    }
    
    .order-lg-2 {
        order: 1;
        margin-bottom: 30px;
    }
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: whatsappBounce 1s ease-in-out infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-button span {
    font-weight: 500;
    font-size: 14px;
}

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

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button a {
        padding: 10px;
    }
    
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button i {
        margin: 0;
    }
}

/* Service Pages Styles */
.service-hero {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-content .service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.process-card {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.process-icon i {
    font-size: 24px;
    color: #0d6efd;
}

.technical-specs table th {
    width: 40%;
    background: #f8f9fa;
}

/* Service Gallery Styles */
.service-image {
    position: relative;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

/* Modern Contact Card */
.service-contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-contact-card:hover {
    transform: translateY(-5px);
}

/* Other Services Card */
.other-services-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.service-link {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.service-link:last-child {
    border-bottom: none;
}

.service-link:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-link:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-info {
    flex: 1;
}

.service-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.service-info span {
    font-size: 0.85rem;
}

.service-link:hover .service-info span i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Referanslar Sayfası */
.references-card {
    display: flex;
    flex-direction: column;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    height: 250px; /* Daha kompakt yükseklik */
}

.references-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.references-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%; /* Kartın tüm yüksekliğini kapla */
}

.references-card .image-container {
    width: 100%;
    height: 100px; /* Logo alanı için daha kompakt yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.references-card .img-fluid {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.references-card .content-wrapper {
    text-align: center;
    flex: 1; /* Kalan alanı doldur */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.references-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2C3E50;
    font-weight: 600;
}

.references-card p {
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
}

.references-card .text-muted {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Modern Testimonials Styles */
.testimonials-container {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-modern {
    position: relative;
    padding: 20px 0;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -70px auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Slick Slider Customization */
.testimonials-modern .slick-dots {
    bottom: -40px;
}

.testimonials-modern .slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonials-modern .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 20px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: -60px auto 15px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Top bar varsa navbar konumu */
body.has-topbar {
    padding-top: 116px; /* Top bar + Navbar yüksekliği */
}

body.has-topbar .navbar {
    top: 40px; /* Top bar yüksekliği */
}

/* Scroll durumunda top bar'ı gizle */
body.scrolled .top-bar {
    transform: translateY(-40px);
    transition: transform 0.3s ease;
}

body.scrolled .navbar {
    top: 0;
    transition: top 0.3s ease;
}

body.scrolled .navbar > .container {
    border-radius: 0 0 15px 15px;
    margin-top: 0;
}

/* Galeri Slider Styles */
.gallery-section {
    margin: 40px 0;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.gallery-slider {
    margin-bottom: 20px;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    outline: none;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-nav {
    margin: 0 -5px;
    position: relative;
}

.gallery-nav-item {
    padding: 5px;
    cursor: pointer;
    outline: none;
}

.gallery-nav-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.gallery-nav .slick-current img {
    opacity: 0.7;
}

/* Slick Ok Stilleri */
.gallery-slider .slick-prev,
.gallery-slider .slick-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.gallery-slider .slick-prev:hover,
.gallery-slider .slick-next:hover {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-slider .slick-prev:before,
.gallery-slider .slick-next:before {
    color: var(--primary-color);
    font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-item img {
        height: 300px;
    }
    
    .gallery-nav-item img {
        height: 70px;
    }
} 