/* ============================================= */
/* DEMAK HAVACILIK - ANA STIL DOSYASI            */
/* ============================================= */

/* Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #e5e5e5;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Genel Konteyner */
.container {
    width: 1170px;
    margin: 0 auto;
    background-color: #ffffff;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(25, 25, 25, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

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

.flags img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../slider.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-text {
    position: relative;
    z-index: 10;
    color: #fff;
    font-size: 46px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-breadcrumb {
    position: relative;
    z-index: 10;
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-slider-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    background: #a3a3a3;
}

.hero-dot.active {
    background: #2b557d;
    border-color: #fff;
}

/* Main Content Area */
.content-area {
    position: relative;
    z-index: 20;
    margin-top: -70px;
    border-top: 4px solid #2b557d;
    padding: 30px 20px 50px 20px;
    min-height: 2306px;
}

.content-area-inner {
    position: relative;
    z-index: 20;
    margin-top: -70px;
    border-top: 4px solid #2b557d;
    padding: 50px 30px;
    min-height: 800px;
}

.content-area-contact {
    position: relative;
    z-index: 20;
    margin-top: -70px;
    border-top: 4px solid #2b557d;
    padding: 50px;
    min-height: 500px;
}

/* Banners */
.banners {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.banner-item {
    flex: 1;
    border: none;
    padding: 0;
}

.banner-item img {
    width: 100%;
    display: block;
}

/* Başlıklar (Titles) */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
    display: inline-block;
}

.title-line {
    width: 60px;
    height: 2px;
    background-color: #2b557d;
    margin: 0 auto;
}

/* Videos */
.videos-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.video-col {
    flex: 1;
}

.video-col .section-title-wrapper {
    margin-bottom: 15px;
}

.video-box {
    background-color: #000;
    height: 400px;
    width: 100%;
    border: 1px solid #eee;
}

/* Referanslar Carousel */
.references-section {
    margin-bottom: 40px;
}

.carousel-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.arrow {
    font-size: 40px;
    color: #1f4265;
    cursor: pointer;
    font-weight: 300;
}

.carousel-items {
    display: flex;
    gap: 15px;
    flex: 1;
}

.ref-item {
    flex: 1;
    border: 1px solid #ddd;
    padding: 5px;
    height: 300px;
}

.ref-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border: 1px solid #666;
    background: transparent;
}

.carousel-dot.active {
    background: #366191;
    border-color: #366191;
}

/* Misyon & Vizyon */
.misyon-vizyon {
    background-color: #10263b;
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 60px;
}

.mv-box {
    flex: 1;
    text-align: center;
}

.mv-title {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.mv-text {
    color: #d1d5db;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
}

/* Ürünler Carousel */
.products-section {
    margin-bottom: 30px;
}

.prod-item {
    flex: 1;
    border: 1px solid #ddd;
    padding: 5px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-item img {
    max-width: 100%;
    max-height: 100%;
}

.view-all-btn {
    display: block;
    margin: 20px auto 0 auto;
    background-color: #2b557d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    cursor: pointer;
}

/* Referanslar Grid */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ref-grid-item {
    border: 1px solid #eee;
    text-align: center;
    padding-bottom: 20px;
}

.ref-grid-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    margin-bottom: 15px;
}

.ref-grid-item .ref-name {
    font-size: 14px;
    color: #333;
    padding: 0 15px;
    line-height: 1.4;
}

/* Ürünler Grid */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prod-grid-item {
    border: 1px solid #eee;
    text-align: center;
    padding-bottom: 20px;
}

.prod-grid-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    margin-bottom: 15px;
}

.prod-grid-item .prod-name {
    font-size: 14px;
    color: #333;
    padding: 0 15px;
    line-height: 1.4;
}

/* Faaliyet Grid */
.faaliyet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.faaliyet-item {
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.faaliyet-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.faaliyet-text {
    padding: 25px 20px;
    font-size: 16px;
    color: #444;
    text-align: center;
    border-top: 1px solid #eee;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

/* Hakkımızda */
.about-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
}

.about-text p {
    margin-bottom: 15px;
}

.policy-quote {
    font-style: italic;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
    position: relative;
    padding-left: 30px;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: #ccc;
}

.mv-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.mv-item {
    flex: 1;
}

.mv-quote {
    font-style: italic;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    position: relative;
    padding: 20px;
}

.quote-icon-left {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    color: #ccc;
}

.quote-icon-right {
    position: absolute;
    right: 0;
    bottom: -10px;
    font-size: 40px;
    color: #ccc;
}

/* İletişim */
.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

.contact-list {
    list-style: none;
    line-height: 2;
}

.contact-list li {
    margin-bottom: 20px;
}

.contact-list i {
    color: #618bb9;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-family: 'Open Sans', Arial, sans-serif;
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    background: #2b557d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 15px;
    align-self: flex-end;
}

.imalathane-title {
    font-size: 20px;
    font-weight: 300;
    margin: 40px 0 20px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Hero Map */
.hero-map {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #e5e5e5;
    display: block;
}

.hero-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: #04101e;
    color: #fff;
    padding: 50px 0 20px 0;
    margin-top: 20px;
}

.footer-inner {
    width: 1170px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col:nth-child(1) {
    flex: 1.5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #bbb;
}

.footer-col p {
    font-size: 12px;
    color: #88929b;
    line-height: 1.8;
    font-style: italic;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1a2a38;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 12px;
    color: #88929b;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: #366191;
    margin-top: 3px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #fff;
    color: #04101e;
    border-radius: 50%;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid #111e29;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
}

/* Alert mesajları */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
