/* 
 * Dost Savunma - Ana CSS Dosyası
 * Tüm sayfalarda kullanılan stiller bu dosyada birleştirilmiştir
 */

/* ==============================
 * TEMEL STILLER VE DEĞİŞKENLER
 * ============================== */

:root {
    --primary-color: #2c3d69;
    --secondary-color: #1e3163;
    --accent-color: #3949ab;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f5f5f5;
    --border-color: #e0e0e0;
    --footer-bg: #1c2a4e;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none;
}

/* ==============================
 * TOP BAR
 * ============================== */

.top-bar {
    background-color: #fff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.top-contact a {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.top-contact a:hover {
    color: var(--accent-color);
}

.top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links-top {
    display: flex;
    gap: 10px;
}

.social-links-top a {
    color: #666;
    transition: var(--transition);
}

.social-links-top a:hover {
    color: var(--accent-color);
}

/* ==============================
 * HEADER & NAVBAR
 * ============================== */

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    width: 200px;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--primary-color);
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-transform: none;
    font-weight: normal;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: var(--background-light);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--primary-color);
    font-size: 24px;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.search-btn:hover {
    background-color: var(--accent-color);
}

/* ==============================
 * SEARCH OVERLAY
 * ============================== */

.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.search-overlay.active {
    display: flex;
}

.search-form {
    width: 80%;
    max-width: 600px;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px;
    background-color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ==============================
 * HERO BANNER & PAGE BANNER
 * ============================== */

.hero-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="1200" height="400" fill="%232c3d69"/><rect width="1200" height="400" fill="url(%23grid)"/><circle cx="900" cy="200" r="60" fill="%23ffffff" opacity="0.1"/><circle cx="1000" cy="100" r="40" fill="%23ffffff" opacity="0.1"/><circle cx="850" cy="300" r="50" fill="%23ffffff" opacity="0.1"/><rect x="50" y="150" width="300" height="100" rx="10" fill="%23ffffff" opacity="0.1"/><text x="200" y="210" text-anchor="middle" font-family="Arial" font-size="16" fill="%23ffffff" opacity="0.8">CNC TORNA</text></svg>');
    background-size: cover;
    background-position: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 61, 105, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    position: relative;
    text-align: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="1200" height="200" fill="%232c3d69"/><rect width="1200" height="200" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 61, 105, 0.7);
}

.page-title {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumbs {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs .divider {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
    color: white;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    position: relative;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="1200" height="400" fill="%232c3d69"/><rect width="1200" height="400" fill="url(%23grid)"/><circle cx="900" cy="200" r="60" fill="%23ffffff" opacity="0.1"/><circle cx="1000" cy="100" r="40" fill="%23ffffff" opacity="0.1"/><circle cx="850" cy="300" r="50" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 61, 105, 0.7);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    opacity: 0.7;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .active {
    color: white;
}

/* ==============================
 * SECTIONS
 * ============================== */

.section {
    padding: 60px 0;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: var(--background-light);
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.certificate-title {
    text-align: center;
    margin-bottom: 40px;
}

/* ==============================
 * ABOUT SECTION (HOME PAGE)
 * ============================== */

.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ==============================
 * SERVICES SECTION (HOME PAGE)
 * ============================== */

.services-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.service-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==============================
 * TIMELINE SECTION (HOME PAGE)
 * ============================== */

.timeline-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.timeline-title {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-container {
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-width: 900px;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 0;
}

.timeline-item {
    width: 22%;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-year {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 0.9rem;
}

/* ==============================
 * CONTACT SECTION (HOME PAGE & CONTACT PAGE)
 * ============================== */

.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-details a {
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    padding: 40px;
    color: white;
}

.contact-form-container h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.9);
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-container {
    grid-column: 1 / -1;
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ==============================
 * ABOUT PAGE STYLES (HAKKIMIZDA.HTML)
 * ============================== */

/* About Intro Section */
.about-intro {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.intro-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 50px;
}

.intro-card p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Vision & Mission Section */
.mission-vision-section {
    position: relative;
    overflow: hidden;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-card, .mission-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.vision-card p, .mission-card p {
    line-height: 1.8;
}

/* Values Section */
.values-section {
    position: relative;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background-color: var(--background-light);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.member-position {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.member-social a {
    width: 36px;
    height: 36px;
    background-color: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--accent-color);
    color: white;
}

/* History Timeline */
.history-section {
    position: relative;
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::after {
    content: '';
    display: block;
    clear: both;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
}

.timeline-date {
    position: absolute;
    top: 10px;
    width: 100px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    font-weight: 600;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -120px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -120px;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.partner-logo {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-logo img {
    max-width: 80%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Stats Counters */
.stats-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="1200" height="200" fill="url(%23dots)"/></svg>');
    background-size: cover;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-counter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Certificate Section */
.certificates-section {
    padding: 60px 0;
    background-color: #fff;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certificate-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.certificate-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.certificate-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.certificate-item p {
    color: #666;
    font-size: 0.9rem;
}

/* ==============================
 * QUALITY PAGE STYLES (KALITE-POLITIKAMIZ.HTML)
 * ============================== */

/* Quality Policy Section */
.quality-policy-section {
    padding: 80px 0;
}

.quality-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.quality-text {
    flex: 1;
    min-width: 300px;
}

.quality-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.quality-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.quality-text li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.quality-text li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 4px;
}

.quality-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-card {
    background-color: var(--background-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.quality-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quality-card h3 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.quality-card p {
    line-height: 1.6;
}

.certificates {
    margin-top: 60px;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.certificate-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.certificate-icon {
    height: 150px;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.certificate-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.certificate-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.certificate-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.certificate-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.certificate-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.certificate-link:hover {
    gap: 8px;
}

/* ==============================
 * CONTACT PAGE STYLES (ILETISIM.HTML)
 * ============================== */

/* Contact Info Cards */
.info-cards {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.info-card p, .info-card a {
    color: #666;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--accent-color);
}

/* Contact Methods */
.contact-methods {
    margin-top: 40px;
    margin-bottom: 60px;
}

.contact-methods h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.methods-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.method-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-card h4 i {
    color: var(--accent-color);
}

.method-card p {
    color: #666;
    margin-bottom: 15px;
}

.method-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.method-card .btn:hover {
    background-color: var(--accent-color);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(0,0,0,0.02);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ==============================
 * CTA SECTION
 * ============================== */

.cta-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    background-image: linear-gradient(rgba(44, 61, 105, 0.9), rgba(44, 61, 105, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="tools" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 10 10 L 30 10 L 30 30 L 10 30 Z M 50 50 L 70 50 L 70 70 L 50 70 Z" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="1200" height="400" fill="%232c3d69"/><rect width="1200" height="400" fill="url(%23tools)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ==============================
 * FOOTER
 * ============================== */

footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 50px 0 20px;
    width: 100%;
    overflow: hidden;
}

.footer-main {
    padding-bottom: 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1 1 200px;
    padding: 0 10px;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    display: block;
}

.footer-address {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-address i {
    margin-right: 10px;
    margin-top: 4px;
    min-width: 16px;
    text-align: center;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 4px;
    margin-top: 15px;
    transition: var(--transition);
    width: auto;
}

.footer-email:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    width: 100%;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-item {
    display: flex;
    align-items: center;
}

.footer-menu-item i {
    margin-right: 10px;
    font-size: 12px;
    min-width: 12px;
}

.footer-menu-item a {
    transition: var(--transition);
    line-height: 1.5;
    display: inline-block;
}

.footer-menu-item a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-newsletter p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-form {
    position: relative;
    width: 100%;
}

.footer-form input {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: white;
    box-sizing: border-box;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
    font-weight: 600;
    display: inline-block;
    width: auto;
}

.footer-form button:hover {
    background-color: rgba(57, 73, 171, 0.8);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    margin: 0 5px;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top:hover {
    background-color: var(--accent-color);
}

.back-to-top.visible {
    display: flex;
}

/* ==============================
 * RESPONSIVE STYLES
 * ============================== */

@media (max-width: 1024px) {
    .hero-title, .page-title {
        font-size: 2.5rem;
    }
    
    .nav-menu a {
        padding: 10px 10px;
        font-size: 13px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .stat-counter {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quality-content {
        flex-direction: column;
    }
    
    .info-cards {
        margin-top: -30px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-col {
        flex: 1 1 calc(50% - 20px);
        min-width: 240px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        float: right;
        margin-left: 60px;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(0);
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        float: right;
        margin-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        right: auto;
        left: -40px;
        top: -30px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .top-right {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .hero-title, .page-title {
        font-size: 2rem;
    }
    
    .timeline-items {
        min-width: 700px;
    }
    
    /* Mobile Menu Styles */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        padding: 15px 20px;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
        background-color: #f5f5f5;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .main-nav {
        justify-content: flex-end;
    }
    
    .main-header {
        position: relative;
    }
    
    .intro-card {
        padding: 30px 20px;
    }
    
    .intro-card p {
        font-size: 1rem;
    }
    
    .vision-card, .mission-card {
        padding: 30px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }
    
    .timeline-date {
        width: 80px;
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-col {
        flex: 1 1 100%;
        padding: 0 5px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-top: 15px;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 5px;
    }
    
    .footer-links a {
        margin: 0 8px;
        padding: 5px 0;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .top-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-right {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-links-top {
        width: 100%;
    }

        @media (max-width: 576px) {
    .social-links-top {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .hero-title, .page-title {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .quality-card {
        padding: 20px;
    }
    
    .quality-card h3 {
        font-size: 1.2rem;
    }
    
    .timeline-date {
        width: 80px;
        font-size: 0.9rem;
    }
    
    .methods-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-col {
        margin-bottom: 25px;
    }
    
    .footer-logo img {
        max-width: 120px;
        margin: 0 auto 15px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-form input, 
    .footer-form button {
        width: 100%;
    }
    
    .footer-email {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
    }
    
    .footer-content .footer-col:nth-child(4) {
        order: 2;
    }
    
    .footer-content .footer-col:nth-child(1) {
        order: 1;
    }
    
    .footer-content .footer-col:nth-child(2) {
        order: 3;
    }
    
    .footer-content .footer-col:nth-child(3) {
        order: 4;
    }
}}
