/* Hakkımızda Sayfası Özel Stilleri */

/* Genel görsel stilleri */
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 75vh;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    overflow: hidden;
    margin-bottom: 80px;
    padding-top: 140px !important;
}

.hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../assets/img/bg-masthead.jpg') center center/cover no-repeat;
    opacity: 0.25;
    z-index: 1;
}

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

.hero-title, .hero-subtitle {
    padding-top: 0 !important;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 32px;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.12);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.85;
}

/* Content Cards */
.content-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(132, 29, 29, 0.1), transparent);
    transition: left 0.5s;
}

.content-card:hover::before {
    left: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #841d1d, #d32f2f);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #841d1d, #d32f2f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #841d1d, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(132, 29, 29, 0.4);
}

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

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

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Standards Section */
.standards-section {
    background: linear-gradient(135deg, #841d1d 0%, #d32f2f 100%);
    padding: 5rem 0;
    color: white;
}

.standards-section .content-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

.standards-section .section-title {
    color: white;
}

.standards-section .lead-text {
    color: rgba(255,255,255,0.9);
}

.standards-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.standard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.standard-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.standard-item i {
    font-size: 2rem;
    color: #ffd700;
}

.standard-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Principles Section */
.principles-section {
    background: white;
    padding: 5rem 0;
}

.principle-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.principle-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #841d1d, #d32f2f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.principle-card:hover::after {
    transform: scaleX(1);
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #841d1d, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

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

.principle-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.principle-card p {
    color: #666;
    line-height: 1.6;
}

/* Mission Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.mission-card, .vision-card {
    height: 100%;
    position: relative;
}

.mission-card .card-header, .vision-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.mission-card .card-header i, .vision-card .card-header i {
    font-size: 2rem;
    color: #841d1d;
}

.mission-card .card-header h2, .vision-card .card-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    background: white;
    padding: 5rem 0;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #841d1d, #d32f2f);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.value-card:hover::before {
    opacity: 0.05;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #841d1d;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #841d1d, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #841d1d 0%, #d32f2f 100%);
    padding: 5rem 0;
    color: white;
}

.cta-section .content-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-section .section-title {
    color: white;
}

.cta-section .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: #841d1d;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 320px;
        min-height: 40vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-stats {
        gap: 18px;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .content-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .service-card, .principle-card, .value-card {
        padding: 1.5rem 1rem;
    }
    .standards-grid {
        gap: 1rem;
    }
    .standard-item {
        padding: 0.8rem;
    }
    .standard-item i {
        font-size: 1.5rem;
    }
    .standard-item span {
        font-size: 1rem;
    }
    /* Mobil görünümde container genişliğini daralt */
    .container {
        max-width: 90% !important;
        min-width: 320px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .about-section .container,
    .services-section .container,
    .standards-section .container,
    .principles-section .container,
    .mission-vision-section .container,
    .values-section .container,
    .cta-section .container {
        max-width: 90% !important;
        min-width: 320px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    .content-card {
        padding: 1.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .service-icon, .principle-icon, .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    /* Küçük mobil ekranlarda container genişliğini daha da daralt */
    .container {
        max-width: 85% !important;
        min-width: 300px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .about-section .container,
    .services-section .container,
    .standards-section .container,
    .principles-section .container,
    .mission-vision-section .container,
    .values-section .container,
    .cta-section .container {
        max-width: 85% !important;
        min-width: 300px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .service-card, .principle-card, .value-card {
        padding: 1.2rem 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Minimum genişlik ayarları - sayfa çok küçülmesin */
html, body {
    min-width: 300px !important;
}

/* Mobil görünümde sayfa genişliğini koru */
@media (max-width: 768px) {
    html, body {
        min-width: 300px !important;
        overflow-x: auto;
    }
    
    /* Mobil cihazlarda AOS animasyonlarını iyileştir */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: all 0.6s ease !important;
    }
    
    [data-aos].aos-animate {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Mobil cihazlarda animasyonları daha hızlı yap */
    [data-aos="fade-up"] {
        transform: translateY(20px) !important;
    }
    
    [data-aos="fade-up"].aos-animate {
        transform: translateY(0) !important;
    }
    
    [data-aos="fade-down"] {
        transform: translateY(-20px) !important;
    }
    
    [data-aos="fade-down"].aos-animate {
        transform: translateY(0) !important;
    }
    
    [data-aos="zoom-in"] {
        transform: scale(0.95) !important;
    }
    
    [data-aos="zoom-in"].aos-animate {
        transform: scale(1) !important;
    }
}

/* Loading animation for cards */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card, .service-card, .principle-card, .value-card {
    animation: cardFadeIn 0.6s ease-out;
} 