/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #333;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #0066b3;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.language-switcher {
    display: flex;
    gap: 4px;
}

.language-switcher a {
    color: white;
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 3px;
    transition: background 0.3s;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Header */
.main-header {
    background: rgba(0, 102, 179, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: block;
    text-decoration: none;
}
.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}

.btn-quote {
    background: #000;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-quote:hover {
    background: #333;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 720px;
    min-height: 320px;
    overflow: hidden;
    background: #0b74b8;
}

/* Slider should sit behind header */
.hero-slider .slider-container,
.hero-slider .slide,
.hero-slider .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Slider track: sağdan sola kayma */
.hero-slider .slider-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.hero-slider .slider-track .slide {
    position: relative;
    flex: none;
    height: 100%;
    opacity: 1;
    overflow: hidden;
}

.hero-slider .slider-track .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
    transform-origin: center;
    display: block;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.slide-content h1,
.slide-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
    color: white;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 28px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content .btn-services {
    margin-top: 8px;
}

.btn-services {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-services:hover {
    background: white;
    color: #333;
}

/* Single Hero Image - No controls needed */

/* CTA Strip (under slider) */
.cta-strip {
    background: #0b74b8;
    padding: 26px 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.cta-strip-text {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
}

.cta-strip-btn {
    display: inline-block;
    background: #fff;
    color: #0b74b8;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 14px 22px;
    border-radius: 2px;
    text-transform: uppercase;
    border: 2px solid #fff;
    white-space: nowrap;
}

.cta-strip-btn:hover {
    background: transparent;
    color: #fff;
}

/* Services Highlight (under CTA strip) */
.services-highlight {
    background: #f6f1e6;
    padding: 70px 0 80px;
}

.services-highlight-head {
    text-align: center;
    margin-bottom: 46px;
}

.services-highlight-head h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    letter-spacing: 1px;
    font-weight: 800;
    color: #111;
}

.services-highlight-sub {
    margin-top: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 12px;
}

.services-highlight-line {
    width: 70px;
    height: 2px;
    background: #111;
    position: relative;
}

.services-highlight-line::before,
.services-highlight-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #111;
    border-radius: 50%;
    transform: translateY(-50%);
}

.services-highlight-line::before { left: -14px; }
.services-highlight-line::after { right: -14px; }

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.service-card {
    background: #fff;
    border: 8px solid rgba(0, 0, 0, 0.03);
    padding: 44px 34px;
    text-align: center;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
}

.service-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.service-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 1.8;
}

/* About Section (resimdeki gibi - iki sütun: sol görseller, sağ metin) */
.about-section {
    background: #e6e9ee;
    padding: 70px 0 80px;
}

.about-section .container {
    max-width: 1320px;
}

.about-head {
    text-align: center;
    margin-bottom: 48px;
}

.about-head h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1px;
}

.about-sub {
    margin-top: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.about-line {
    width: 70px;
    height: 2px;
    background: #111;
    position: relative;
}

.about-line::before,
.about-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #111;
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-line::before { left: -14px; }
.about-line::after { right: -14px; }

.about-label {
    color: #777;
    font-size: 14px;
}

.about-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-single {
    width: 100%;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.about-img-single img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    background: #f0f2f5;
    padding: 44px 40px 48px;
    border-radius: 4px;
}

.about-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.about-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 28px;
}

.btn-about {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-about:hover {
    background: #333;
}

/* About Us Page - üst başlık, sol metin (~58%), sağ görseller (~42%), örnekteki boyutlar */
.about-page {
    position: relative;
    background: #efefef;
    padding: 140px 0 80px;
    min-height: 60vh;
    overflow: hidden;
}

/* Desen kaldırıldı - düz beyaz arka plan */

.about-page .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

/* Services Page - sadece banner, About ile aynı stil */
.services-page {
    position: relative;
    background: #efefef;
    padding: 140px 0 40px;
    min-height: 40vh;
    overflow: hidden;
}

.services-page .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.services-page-banner {
    text-align: center;
    padding: 28px 20px 32px;
    background: #c5d4e3;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* Contact page - başlık altı metin ve iki sütun */
.contact-intro-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    text-align: center;
    max-width: 720px;
    margin: 32px auto 40px;
    line-height: 1.5;
}
.services-page .contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    background: #efefef;
    padding: 40px 0 56px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}
.contact-block {
    margin-bottom: 28px;
}
.contact-block-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.contact-block-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
}
.contact-block-text a {
    color: #0066b3;
    text-decoration: none;
}
.contact-block-text a:hover {
    text-decoration: underline;
}
.contact-map-wrap {
    margin-top: 12px;
    border-radius: 4px;
    overflow: hidden;
    max-width: 100%;
}
.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}
.services-page .contact-form {
    background: #fff;
    padding: 28px 32px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
}
.contact-form-group {
    margin-bottom: 20px;
}
.contact-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    background: #fff;
}
.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form-btn {
    display: inline-block;
    background: #0066b3;
    color: #fff;
    border: 0;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 4px;
}
.contact-form-btn:hover {
    background: #00508c;
}
@media (max-width: 992px) {
    .services-page .contact-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Service Ports - harita tüm ekran genişliği */
.ports-map-wrap {
    width: 100%;
    margin-top: 0;
}
.ports-map {
    width: 100%;
    height: 520px;
    margin-bottom: 48px;
    overflow: hidden;
    background: #e8ecf0;
}
.ports-marker { background: none; border: none; }
.ports-marker-pin {
    display: block;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    margin-top: -24px;
    background: #0066b3;
    border: 2px solid #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.leaflet-popup-content-wrapper { border-radius: 6px; }
.leaflet-popup-content { margin: 10px 14px; font-size: 14px; }

/* Service Ports - alt bölge listeleri */
.ports-regions {
    background: #f5f5f5;
    padding: 40px 0 60px;
}
.ports-regions-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #111;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 28px;
}
.ports-regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ports-region-card {
    background: #fdeee0;
    border-radius: 4px;
    overflow: hidden;
}
.ports-region-title {
    background: #c5e8f7;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #111;
    padding: 10px 14px;
    text-transform: uppercase;
}
.ports-region-list {
    list-style: none;
    margin: 0;
    padding: 10px 14px 12px;
}
.ports-region-list li {
    font-size: 14px;
    color: #444;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ports-region-list li:last-child {
    border-bottom: none;
}
@media (max-width: 992px) {
    .ports-regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .ports-regions-grid {
        grid-template-columns: 1fr;
    }
}

/* Get in Touch - sol map.svg, sağ iletişim bilgileri */
.get-in-touch {
    background: #fff;
    padding: 48px 0 56px;
}
.get-in-touch-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}
.get-in-touch-map {
    min-height: 400px;
}
.get-in-touch-map img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.get-in-touch-content {
    padding: 24px 0 24px 48px;
}
.get-in-touch-title {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 28px;
}
.get-in-touch-item {
    margin-bottom: 22px;
}
.get-in-touch-label {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}
.get-in-touch-text {
    font-size: 17px;
    color: #333;
}
.get-in-touch-text a {
    color: #0066b3;
    text-decoration: none;
}
.get-in-touch-text a:hover {
    text-decoration: underline;
}
.get-in-touch-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 16px 36px;
    background: #000;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}
.get-in-touch-btn:hover {
    background: #333;
}
@media (max-width: 992px) {
    .get-in-touch-inner {
        grid-template-columns: 1fr;
    }
    .get-in-touch-map {
        min-height: 300px;
    }
    .get-in-touch-content {
        padding: 24px 0 0;
    }
}

.services-intro-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    text-align: center;
    max-width: 900px;
    margin: 40px auto 36px;
    line-height: 1.4;
}

.services-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.services-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-card img {
    width: 100%;
    height: auto;
    display: block;
}

.services-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 20px 18px 8px;
}

.services-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding: 0 18px 20px;
}

@media (max-width: 992px) {
    .services-cards-row {
        grid-template-columns: 1fr;
    }
}

/* Banner: header altında, sadece about sayfasında - ABOUT US + noktalar + çizgi - boydan boya */
.about-page-banner {
    text-align: center;
    padding: 28px 20px 32px;
    background: #c5d4e3;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* 2 sütun: sol logo+metin, sağda görsel */
.about-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
    align-items: start;
}

.about-text-block {
    padding-right: 20px;
}

.about-logo {
    height: 48px;
    width: auto;
    margin-bottom: 28px;
    display: block;
}

.about-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #111;
    line-height: 1.4;
    margin-bottom: 24px;
}

.about-para {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-para:last-child {
    margin-bottom: 0;
}

.about-col-right img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .about-content-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-col-right {
        order: -1;
    }
}

/* Mission & Vision - açık bej arka plan, 2 sütun */
.about-mission-vision {
    background: #f0ede6;
    padding: 56px 0 64px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-vision-item {
    text-align: center;
}

.mission-vision-icon {
    margin-bottom: 20px;
}

.mission-vision-icon img {
    width: auto;
    height: 48px;
    display: inline-block;
}

.mission-vision-icon i {
    font-weight: 400;
}

.mission-vision-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
}

.mission-vision-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Quality Certificates - açık krem arka plan, 3 sertifika */
.about-certificates {
    background: #f5f2e8;
    padding: 56px 0 64px;
}

.certificates-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin-bottom: 14px;
}

.certificates-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.certificate-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.certificate-card img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 14px 12px;
}

@media (max-width: 992px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Değer kartları - 4 kart: Reliability, Speed & Efficiency, Customer Focus, Quality */
.about-values {
    background: #e6e9f0;
    padding: 48px 0 56px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-icon {
    color: #111;
    font-size: 36px;
    margin-bottom: 16px;
}

.value-label {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.about-page-head {
    text-align: center;
    margin-bottom: 48px;
}

.about-page-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.about-page-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.about-dot {
    width: 5px;
    height: 5px;
    background: #111;
    border-radius: 50%;
}

.about-dot-line {
    width: 48px;
    height: 2px;
    background: #111;
    margin-left: 2px;
}

/* Sol ~58%, sağ ~42% - örnekteki oran */
.about-page-body {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-page-content {
    padding-right: 32px;
}

.about-page-logo img {
    height: 52px;
    width: auto;
    margin-bottom: 24px;
    display: block;
}

.about-page-title {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-page-p {
    font-size: 15px;
    color: #111;
    line-height: 1.78;
    margin-bottom: 20px;
}

.about-page-p:last-of-type {
    margin-bottom: 0;
}

/* Sağ kolon: solda ana görsel (sol köşeleri kesik çokgen), sağda 2 yuvarlak - hedef tasarım */
.about-page-images {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* Ana görsel: sol üst ve sol alt köşe kesik (çokgen), solda konumlu */
.about-page-img-main {
    position: relative;
    width: 58%;
    max-width: 320px;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    z-index: 2;
    clip-path: polygon(0 12%, 0 88%, 14% 100%, 100% 100%, 100% 0, 14% 0);
    border-radius: 0 8px 8px 0;
}

.about-page-img-main img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.about-page-img-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.about-page-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Üstteki yuvarlak (ortada/sağda) */
.about-page-img-circle-top {
    top: 8%;
    right: 0;
    width: 140px;
    height: 140px;
}

/* Alttaki yuvarlak (sağ alt, kısmen görünür) */
.about-page-img-circle-bottom {
    bottom: -20px;
    right: 20px;
    width: 120px;
    height: 120px;
    z-index: 1;
}

@media (max-width: 992px) {
    .about-page-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-page-images {
        min-height: 340px;
        order: -1;
        justify-content: center;
    }
    
    .about-page-img-main {
        width: 70%;
        max-width: 280px;
        margin-left: 0;
        margin-right: auto;
        clip-path: polygon(0 10%, 0 90%, 12% 100%, 100% 100%, 100% 0, 12% 0);
        border-radius: 0 10px 10px 0;
    }
    
    .about-page-img-circle-top {
        top: 5%;
        right: 5%;
        width: 110px;
        height: 110px;
    }
    
    .about-page-img-circle-bottom {
        right: 0;
        bottom: -15px;
        width: 95px;
        height: 95px;
    }
}

@media (max-width: 576px) {
    .about-page-banner {
        padding-top: 36px;
    }
    
    .about-page-heading {
        font-size: 28px;
    }
    
    .about-page-head {
        margin-bottom: 32px;
    }
    
    .about-page-title {
        font-size: 18px;
    }
    
    .about-page-p {
        font-size: 14px;
    }
    
    .about-page-content {
        padding-right: 0;
    }
    
    .about-page-images {
        min-height: 280px;
    }
    
    .about-page-img-main {
        width: 75%;
        max-width: 260px;
    }
    
    .about-page-img-circle-top {
        width: 85px;
        height: 85px;
        top: 8px;
        right: 8px;
    }
    
    .about-page-img-circle-bottom {
        width: 75px;
        height: 75px;
        bottom: -8px;
    }
}

/* Our Services (cards with images) */
.our-services {
    background: #f7dede;
    padding: 70px 0 80px;
}

.our-services-head {
    text-align: center;
    margin-bottom: 40px;
}

.our-services-head h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1px;
}

.our-services-sub {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.our-services-line {
    width: 80px;
    height: 2px;
    background: #111;
    position: relative;
}

.our-services-line::before,
.our-services-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #111;
    border-radius: 50%;
    transform: translateY(-50%);
}

.our-services-line::before { left: -14px; }
.our-services-line::after { right: -14px; }

.our-services-desc {
    margin: 18px auto 0;
    max-width: 900px;
    font-size: 14px;
    color: rgba(0,0,0,0.55);
    line-height: 1.8;
}

.our-services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.our-service-card {
    background: rgba(255, 255, 255, 0.55);
    border: 10px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.our-service-img {
    background: #fff;
    padding: 18px 18px 0;
}

.our-service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.our-service-body {
    background: rgba(255,255,255,0.85);
    padding: 22px 22px 26px;
    text-align: center;
}

.our-service-body h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.our-service-body p {
    font-size: 13px;
    color: rgba(0,0,0,0.50);
    line-height: 1.8;
}

/* Contact Split */
.contact-split {
    background: #d7b8ff;
    padding: 70px 0;
}

.contact-split-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-split-left h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.08;
    color: #111;
    margin-bottom: 24px;
}

.contact-split-block {
    color: rgba(0,0,0,0.60);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.contact-split-label {
    font-weight: 700;
    color: rgba(0,0,0,0.70);
    margin-bottom: 8px;
}

.contact-split-text {
    margin-bottom: 4px;
}

.contact-split-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 13px;
}

.contact-split-btn:hover {
    background: #333;
}

.contact-form {
    background: transparent;
}

.contact-field {
    margin-bottom: 18px;
}

.contact-field label {
    display: block;
    font-size: 12px;
    color: rgba(0,0,0,0.65);
    margin-bottom: 6px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    padding: 12px 14px;
    border-radius: 2px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    display: inline-block;
    background: #2f3437;
    color: #fff;
    border: 0;
    padding: 12px 34px;
    border-radius: 2px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
}

.contact-submit:hover {
    background: #1f2224;
}

/* Image Banner */
.image-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: saturate(1.05);
}

.image-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.image-banner-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.image-banner-inner h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 10px;
    text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.image-banner-sub {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.95;
}

.image-banner-sub2 {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .about-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 32px 24px 36px;
    }
    .about-content h3 {
        font-size: 18px;
    }

    .our-services-cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .our-services-head h2 {
        font-size: 24px;
    }

    .contact-split-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-split-left h2 {
        font-size: 30px;
    }

    .image-banner {
        height: 320px;
    }

    .image-banner-inner h2 {
        font-size: 24px;
    }

}

/* Content Section */
.content-section {
    padding: 80px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0066b3;
}

.content-section p {
    font-size: 18px;
    color: #666;
}

/* Site Footer */
.site-footer {
    position: relative;
    background: #c5d4e3;
    padding: 56px 0 0;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23b8c9db' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
    display: block;
}

.footer-desc,
.footer-col p {
    font-size: 14px;
    color: #4a5f7f;
    line-height: 1.65;
    margin-bottom: 8px;
}

.footer-col a {
    color: #4a5f7f;
    text-decoration: none;
}

.footer-col a:hover {
    color: #0066b3;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-nav a {
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(255,255,255,0.7);
    color: #4a5f7f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-social a:hover {
    background: #fff;
    color: #0066b3;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 18px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 13px;
    color: #3d5266;
}

@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        position: relative;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 102, 179, 0.98);
        flex-direction: column;
        z-index: 100;
        margin-top: 10px;
        border-radius: 4px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .logo img {
        height: 38px;
    }
    
    .btn-quote {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .slide-content h1,
    .slide-title { font-size: 36px; }
    .slide-subtitle { font-size: 24px; }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .logo img {
        height: 32px;
    }
    
    .btn-quote {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .hero-slider {
        height: 560px;
        min-height: 440px;
    }
    
    .hero-slider .slider-container,
    .hero-slider .slide,
    .hero-slider .slide img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-slider .slide img {
        object-fit: cover;
        object-position: center center;
    }

    .cta-strip-inner {
        flex-direction: column;
        gap: 14px;
    }

    .cta-strip-text {
        font-size: 20px;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .services-highlight-head h2 {
        font-size: 24px;
    }
    
    .slide-content h1,
    .slide-title { font-size: 28px; }
    .slide-subtitle { font-size: 22px; }
    
}

@media (max-width: 576px) {
    /* top-bar-left zaten 768'de gizlendi */
    
    .hero-slider {
        min-height: 380px;
    }
    
    .slide-content h1,
    .slide-title { font-size: 24px; }
    .slide-subtitle { font-size: 18px; }
    
    .btn-services {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* Yukarı çık butonu */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0b74b8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: #095a94;
    color: #fff;
}
.scroll-to-top i {
    font-size: 18px;
}
@media (max-width: 576px) {
    .scroll-to-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
    .scroll-to-top i {
        font-size: 16px;
    }
}
