/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from { 
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to { 
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
}

.rotate-in {
    opacity: 0;
    animation: rotateIn 0.7s ease forwards;
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header */
#header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 80px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-link.active {
    color: #e63946;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e63946;
}

.nav-link:hover {
    color: #e63946;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    border-radius: 5px;
    overflow: hidden;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background-color: #f8f9fa;
    color: #e63946;
    padding-left: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #333;
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #e63946;
    background-color: #f8f9fa;
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.hamburger:hover {
    transform: scale(1.1);
}

/* Mission Hero Section */
.mission-hero {
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon points="0,0 1000,0 1000,1000" fill="white"/></svg>');
    background-size: cover;
}

.mission-hero h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
}

.mission-hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    position: relative;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* Mission Intro Section */
.mission-intro {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1d3557;
}

.intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text .highlight {
    font-weight: 700;
    color: #e63946;
    font-size: 1.2rem;
    border-left: 4px solid #e63946;
    padding-left: 1rem;
    margin-top: 2rem;
}

.intro-image {
    flex: 1;
}

.image-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: rotate(0);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* Mission Vision Main Section */
.mission-vision-main {
    padding: 100px 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.icon-circle i {
    font-size: 1.8rem;
    color: white;
}

.section-header h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    color: #1d3557;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.mv-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #e63946;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.mv-card:hover .card-icon {
    background-color: #e63946;
    transform: scale(1.1);
}

.card-icon i {
    font-size: 1.8rem;
    color: #e63946;
    transition: all 0.3s ease;
}

.mv-card:hover .card-icon i {
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1d3557;
}

.vision-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.vision-text {
    flex: 1;
}

.vision-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.vision-text .highlight {
    font-weight: 700;
    color: #e63946;
    font-size: 1.2rem;
    border-left: 4px solid #e63946;
    padding-left: 1rem;
    margin-top: 2rem;
}

.vision-visual {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #457b9d, #1d3557);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vision-icon i {
    font-size: 1.5rem;
    color: white;
}

.vision-item h4 {
    color: #1d3557;
    font-size: 1.1rem;
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1d3557;
}

.values-container {
    max-width: 900px;
    margin: 0 auto;
}

.value-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.value-item {
    flex: 1;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #457b9d);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f1faee;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1d3557;
    position: relative;
    z-index: 1;
}

.value-item p {
    position: relative;
    z-index: 1;
}

/* Mission CTA Section */
.mission-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e63946;
}

.btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #1d3557;
    background-color: white;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .intro-content,
    .vision-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .value-row {
        flex-direction: column;
    }
    
    .mission-hero h1 {
        font-size: 3rem;
    }
    
    .intro-text h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .social-icons {
        display: none;
    }
    
    .mission-hero {
        padding: 120px 0 80px;
    }
    
    .mission-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-hero .tagline {
        font-size: 1.2rem;
    }
    
    .mission-intro,
    .mission-vision-main,
    .our-values,
    .mission-cta {
        padding: 60px 0;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-circle {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .vision-visual {
        grid-template-columns: 1fr;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
    }
}