/* 
 * Tunusluoğlu A.Ş. Ana Stil Dosyası
 * Bu dosya site için gereken tüm stil tanımlamalarını içerir
 * Mobil ve masaüstü uyumlu responsive tasarım
 */

:root {
    --primary-color: #016099;
    --secondary-color: #0d3f66;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --text-color: #4a4a4a;
    --border-color: #e9e9e9;
    --gradient-primary: linear-gradient(135deg, #016099 0%, #0d3f66 100%);
    --gradient-accent: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 5px;
    --border-radius-lg: 10px;
}

/* Genel Stil */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

a:hover {
    color: var(--secondary-color);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(1, 96, 153, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 96, 153, 0.3);
}

.section-title {
    position: relative;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin-bottom: 2rem;
    border-radius: 10px;
}

/* Dil Seçenekleri */
.language-selector {
    background-color: transparent;
    display: inline-block;
}

.language-options {
    display: flex;
}

.language-option {
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    margin-left: 0.3rem;
    transition: var(--transition);
}

.language-option:hover,
.language-option.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Üst Bilgi Çubuğu */
.top-bar {
    background-color: #2c3e50;
    color: white;
    font-size: 0.9rem;
}

.top-bar a.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
    transition: all 0.3s;
}

.top-bar a.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.contact-info li {
    margin-right: 1.5rem;
}

.contact-info li i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.phone-item {
    display: flex;
    align-items: center;
}

.phone-item a {
    display: flex;
    align-items: center;
}

.contact-link {
    color: blue;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 0.5rem;
    color: #fff;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

.navbar-brand img.logo {
    max-height: 60px;
    transition: all 0.3s ease-in-out;
}

/* Logo hover efekti */
.navbar-brand:hover img.logo {
    transform: scale(1.1);
}

/* Logo tıklama efekti - JavaScript ile kontrol edilecek */
.navbar-brand img.logo-clicked {
    transform: scale(1.25);
    animation: logoGlow 0.5s ease-in-out;
}

/* Logo parlama animasyonu */
@keyframes logoGlow {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(1); }
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: var(--dark-color);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-section .carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
}

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

.hero-section .carousel-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: 50%;
    background-size: 40%;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

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

.about-img img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Companies Section */
.companies-section {
    padding: 5rem 0;
}

.company-content {
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.company-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Products Section */
.products-section {
    padding: 5rem 0;
}

/* Modern Ürün Kartları */
.product-card-modern {
    display: flex;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.product-card-modern.primary-card {
    background: var(--gradient-primary);
    color: #fff;
}

.product-card-modern.primary-card .product-title,
.product-card-modern.primary-card .product-subtitle {
    color: #fff;
}

.product-card-modern.primary-card::before {
    background: var(--gradient-accent);
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(1, 96, 153, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.primary-card .product-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.product-content {
    flex-grow: 1;
}

.product-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.product-list-modern li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.product-list-modern li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.primary-card .product-list-modern li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.product-list-modern i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.primary-card .product-list-modern i {
    color: #fff;
}

.product-list-modern span {
    flex-grow: 1;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.gallery-item img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
    vertical-align: middle;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 96, 153, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background-color: rgba(1, 96, 153, 0.2); /* Daha şeffaf overlay */
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-popup {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-popup {
    transform: translateY(0);
    opacity: 1;
}

/* Magnific Popup Custom Styles */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-arrow-left:before,
.mfp-arrow-left:after,
.mfp-arrow-right:before,
.mfp-arrow-right:after {
    border: none;
}

.mfp-arrow-left:after {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
}

.mfp-arrow-right:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
}

.mfp-counter {
    font-size: 1rem;
    color: #fff;
}

.mfp-title {
    font-size: 1rem;
    padding-bottom: 0.5rem;
}

/* News Section */
.news-section {
    padding: 5rem 0;
}

.news-card {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

/* Modern Contact Info Card */
.contact-info-modern {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.contact-info-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(1, 96, 153, 0.2);
}

.contact-details {
    flex-grow: 1;
}

.contact-details h5 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.map-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-map-action {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-map-action:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-map-action i {
    margin-right: 0.3rem;
}

/* Modern Contact Form */
.contact-form-modern {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.contact-form-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.form-floating label {
    color: var(--text-color);
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

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

/* Google Maps */
.map-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

/* Footer */
.footer-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 70px 0 40px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-social-icons {
    margin-top: 20px;
    display: flex;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.footer-divider {
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.footer-divider-hr {
    margin: 15px 0;
    border-color: rgba(255, 255, 255, 0.1);
}

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

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links li a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: #fff;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    color: #fff;
}

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

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact li span {
    line-height: 1.6;
}

.footer-credit {
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-credit:hover {
    color: #fff;
    text-decoration: underline;
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(1, 96, 153, 0.3);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(1, 96, 153, 0.4);
}

/* Animasyon */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Google Translate Özel Stil */
.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    padding: 0.3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    margin: 0 !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

#google_translate_element {
    display: inline-block;
}

/* Medya Sorguları */
@media (max-width: 991.98px) {
    .hero-section, 
    .about-section, 
    .products-section, 
    .gallery-section {
        padding: 4rem 0;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .contact-info {
        justify-content: center;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .footer-nav {
        justify-content: center;
        margin-top: 1rem;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .product-card-modern {
        margin-bottom: 2rem;
    }
    .product-icon {
        margin-right: 1rem;
    }
    
    /* Mobilde üst çubuğu ince yapmak için */
    .top-bar {
        padding: 0.4rem 0 !important;
    }
    
    /* Adres bilgisini mobilde gizle */
    .top-bar .contact-info li:first-child {
        display: none;
    }
    
    /* Telefon ve e-posta bilgisi mobilde daha belirgin olsun */
    .top-bar .contact-info {
        justify-content: flex-start;
    }
    
    /* Dil seçim alanını mobilde daha uygun yerleştir */
    .language-selector {
        margin-right: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section, 
    .about-section, 
    .products-section, 
    .gallery-section {
        padding: 3rem 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-img {
        margin-top: 2rem;
    }
    .product-card-modern {
        padding: 1.5rem;
    }
    .gallery-item img {
        height: 200px;
    }
    .contact-form-modern {
        margin-top: 2rem;
    }
    
    /* Mobilde üst çubuğu daha da küçült */
    .top-bar {
        padding: 0.3rem 0 !important;
        font-size: 0.8rem;
    }
    
    /* Yönetim butonunu mobilde daha küçük göster */
    .top-bar a.btn-primary {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
    
    /* Sosyal medya ikonlarını mobilde daha küçük yap */
    .social-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    /* Mobilde adres bilgisini gizle ve telefon/mail yerleşimini düzenle */
    .contact-info li {
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    /* Logoyu mobilde küçült */
    .navbar-brand img.logo {
        max-height: 45px;
    }
}

/* Misyon, Vizyon ve Değerlerimiz Bölümü */
.mission-vision-section {
    background-color: var(--light-color);
    position: relative;
}

.values-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: var(--transition);
}

.values-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.values-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.values-card.primary-card {
    background: var(--gradient-primary);
    color: #fff;
}

.values-card.primary-card .values-title,
.values-card.primary-card .values-text {
    color: #fff;
}

.values-card.primary-card::before {
    background: #fff;
}

.values-card.primary-card:hover::before {
    opacity: 0.1;
}

.values-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.values-card.primary-card .values-icon {
    background: rgba(255, 255, 255, 0.2);
}

.values-card:hover .values-icon {
    transform: scale(1.1) rotate(10deg);
}

.values-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.small-divider {
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    margin-bottom: 1.2rem;
    border-radius: 5px;
}

.values-card.primary-card .small-divider {
    background: #fff;
}

.values-text {
    color: var(--text-color);
    margin-bottom: 0.7rem;
}

.values-text:last-child {
    margin-bottom: 0;
}

.social-responsibility-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
}

.values-icon.large-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    margin: 0 auto;
}

.arabic-signature {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.arabic-text {
    font-family: 'Traditional Arabic', 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    color: #6c757d;
}

@media (max-width: 991.98px) {
    .values-card {
        margin-bottom: 1.5rem;
    }
    
    .social-responsibility-card {
        padding: 1.5rem;
    }
    
    .footer-section {
        padding: 50px 0 30px;
    }
}

@media (max-width: 767.98px) {
    .values-icon.large-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .social-responsibility-card .row {
        flex-direction: column;
    }
    
    .social-responsibility-card .col-md-3 {
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-heading {
        margin-top: 1.5rem;
    }
}

/* Ofisler bölümü hover efekti */
.contact-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
} 