/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
}

/* About Header Background Image Stilleri */
.about-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-header .container {
    position: relative;
    z-index: 2;
}

.about-main-title {
    color: #ffffff !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .about-header {
        min-height: 250px;
    }
}

/* Mobil Logo Stilleri */
.desktop-logo {
    display: block;
}
.mobile-logo {
    display: none;
}

@media (max-width: 768px) {
    .desktop-logo {
        display: none;
    }
    .mobile-logo {
        display: block;
    }
    
    /* Fixed E-Katalog Button Mobile Styles */
    .fixed-e-katalog {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .fixed-e-katalog-link {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-radius: 40px !important;
    }
    
    .fixed-e-katalog-link i {
        font-size: 18px !important;
    }
}


/* Map Section Styles */
.map-section {
    width: 100%;
    background: #f8f9fa;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

/* Fixed E-Katalog Button Styles */
.fixed-e-katalog {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    display: block !important;
}

.fixed-e-katalog-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #FFC61A !important;
    color: #333 !important;
    text-decoration: none !important;
    padding: 15px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 198, 26, 0.6) !important;
    border: 2px solid #fff !important;
}

.fixed-e-katalog-link:hover {
    background: #FFD700 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 198, 26, 0.8) !important;
    color: #333 !important;
    text-decoration: none !important;
}

.fixed-e-katalog-link i {
    font-size: 20px !important;
}

.fixed-e-katalog-link span {
    white-space: nowrap !important;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo a:hover .logo-image {
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hamburger:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #495057;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
    background: #495057;
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
    background: #495057;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffed4e;
}

.nav-link i {
    font-size: 12px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 270px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #000000;
    border-left-color: #ffed4e;
    padding-left: 25px;
}

/* İç içe Dropdown (Submenu) Stilleri */
.dropdown-submenu {
    position: relative;
}

/* Alt menüsü olan linkler için */
.dropdown-submenu .has-submenu {
    display: inline-block;
    width: auto;
    cursor: pointer;
}

/* Ok ikonu toggle butonu */
.submenu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.submenu-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: #000000;
}

.dropdown-submenu:hover .submenu-toggle {
    background: rgba(255, 237, 78, 0.3);
    border-radius: 3px;
}

.dropdown-submenu:hover .submenu-toggle i {
    color: #000000;
    transform: rotate(0deg);
}

.dropdown-submenu-content {
    position: absolute !important;
    left: calc(100% - 5px) !important;
    top: -10px !important;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    list-style: none;
    padding: 10px 0;
    margin-left: 0;
    z-index: 1002 !important;
    pointer-events: none;
}

/* Hover alanını genişlet */
.dropdown-submenu::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: transparent;
}

.dropdown-submenu:hover > .dropdown-submenu-content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    pointer-events: auto;
}

.dropdown-submenu-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
}

.dropdown-submenu-content li {
    margin: 0;
}

.dropdown-submenu-content .dropdown-link {
    padding: 10px 20px;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.dropdown-submenu-content .dropdown-link:hover {
    background: #f8f9fa;
    color: #000000;
    border-left-color: #ffed4e;
    padding-left: 25px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 8px 15px;
    gap: 8px;
}

.search-box i {
    color: #666;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    width: 100px;
    }

/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -50px;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Banner Image Responsive */
.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Banner Container */
.hero-banner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Hero Banner Image */
.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-left {
    flex: 1;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.title-line {
    display: block;
    line-height: 1.1;
}

.highlight {
    color: #ffffff;
}

.hero-tags {
    display: flex;
    gap: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
}


/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: left;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.highlight {
    color: #ffffff;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #ffed4e;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 237, 78, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffed4e;
    font-size: 24px;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    color: #1a1a1a;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

/* HGS Integration Section */
.hgs-integration {
    background: #0f1419;
    padding: 80px 0;
    color: #fff;
}

.hgs-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hgs-left h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hgs-left h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffed4e;
}

.hgs-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hgs-logo {
    text-align: center;
}

.hgs-text {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.hgs-subtitle {
    font-size: 1rem;
    color: #ffed4e;
    font-weight: 600;
}

.hgs-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: #333;
    border-radius: 25px;
    padding: 20px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-interface {
    text-align: center;
    color: #fff;
}

.app-header {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffed4e;
}

.car-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.app-text {
    font-size: 1rem;
    font-weight: 600;
}

/* OYBIS Section */
.oybis-section {
    position: relative;
    background: #0f1419;
    padding: 80px 0;
    overflow: hidden;
}

.oybis-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="tunnel" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23000;stop-opacity:0.8" /><stop offset="50%" style="stop-color:%23111;stop-opacity:0.6" /><stop offset="100%" style="stop-color:%23000;stop-opacity:0.8" /></linearGradient></defs><rect width="1200" height="400" fill="url(%23tunnel)"/><rect x="0" y="150" width="1200" height="100" fill="%23333" opacity="0.3"/><rect x="0" y="200" width="1200" height="2" fill="%23ffd700"/><rect x="0" y="250" width="1200" height="2" fill="%23ffd700"/><rect x="0" y="300" width="1200" height="2" fill="%23ffd700"/></svg>') center/cover;
}

.oybis-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.oybis-left {
    flex: 1;
}

.oybis-logo {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.oybis-left h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.oybis-right {
    flex: 1;
}

.oybis-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
}

.oybis-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffed4e;
}

.oybis-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.oybis-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.oybis-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffed4e;
    font-weight: bold;
}

.app-screenshots {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.screenshot {
    width: 80px;
    height: 120px;
    background: #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

/* PTS Section */
.pts-section {
    background: #ffed4e;
    padding: 80px 0;
    color: #1a1a1a;
}

.pts-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pts-left {
    flex: 1;
}

.pts-logo {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.pts-left h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pts-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.pts-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.city-illustration {
    width: 300px;
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    border-radius: 15px;
    overflow: hidden;
}

.building {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 40px;
    height: 80px;
    background: #666;
    border-radius: 5px 5px 0 0;
}

.building::before {
    content: '';
    position: absolute;
    right: -30px;
    width: 30px;
    height: 60px;
    background: #555;
    border-radius: 5px 5px 0 0;
}

.building::after {
    content: '';
    position: absolute;
    right: -60px;
    width: 35px;
    height: 70px;
    background: #777;
    border-radius: 5px 5px 0 0;
}

.road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #333;
}

.car {
    position: absolute;
    bottom: 25px;
    left: 50px;
    width: 20px;
    height: 10px;
    background: #ff6b6b;
    border-radius: 3px;
}

.tree {
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 15px;
    height: 30px;
    background: #4caf50;
    border-radius: 50% 50% 0 0;
}

/* References Section */
.references {
    padding: 80px 0;
    background: #f8f9fa;
}

.references .section-title {
    margin-bottom: 50px;
}

.references-carousel {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.reference-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
}

.reference-logo {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

/* Social Media Section */
.social-media {
    padding: 60px 0;
    background: #f8f9fa;
}

.social-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
}

.profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.username {
    font-weight: 600;
    color: #1a1a1a;
}

.fab.fa-instagram {
    color: #e4405f;
    font-size: 20px;
}

.post-image {
    width: 100%;
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

/* Facilities Section */
.facilities {
    padding: 80px 0;
    background: #fff;
}

.facilities .section-title {
    margin-bottom: 50px;
}

.map-container {
    display: flex;
    justify-content: center;
}

.map {
    width: 600px;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff6b6b;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.map-pin:nth-child(1) {
    top: 100px;
    left: 150px;
}

.map-pin:nth-child(2) {
    top: 200px;
    right: 200px;
}

.map-pin:nth-child(3) {
    bottom: 100px;
    left: 300px;
}

.map-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: #666;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    width: 100%;
    margin-top: 70px;
    padding: 0px 0px 10px 0px;
    z-index: 10;
 
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 60px;
    border-top: 1px solid transparent;
}

/* Ana Banner Section */
.ana {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px;
    margin-bottom: -50px;
    background: #000;
}

    .ana img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
}

/* Services Section */
.services {
    padding: 60px 0 80px 0;
    background: transparent;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.services-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.services-title .highlight {
    color: #fec619;
}

.services-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Main Services Grid (Default.aspx) */
.main-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .main-services-grid {
        gap: 12px;
        padding: 0 15px;
    }
    
    .main-services-grid .service-item {
        min-height: 200px;
    }
    
    .main-services-grid .service-content {
        padding: 16px 14px 8px 14px;
    }
    
    .main-services-grid .service-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .main-services-grid .service-content ul {
        margin-bottom: 12px;
    }
    
    .main-services-grid .service-content ul li {
        font-size: 13px;
        margin-bottom: 4px;
    }

        .main-services-grid .read-more {
            font-size: 13px;
            padding: 8px 16px;
        }
}

@media (min-width: 768px) {
    .main-services-grid {
    grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Hizmetlerimiz Page Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 280px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 0 0 50%;
    padding: 28px 24px;
    background: #fec619;
    display: flex;
    flex-direction: column;
    
}

.service-content h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 22px;
        font-weight: 600;
    color: #1a1a1a;
        margin-bottom: 8px;
        line-height: 1.4;
        letter-spacing: -0.3px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.service-content li {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        color: #333333;
        margin-bottom: 6px;
    position: relative;
    padding-left: 20px;
        line-height: 1.5;
}

.service-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.read-more {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    color: #333;
    transform: translateX(5px);
}

.read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
    }

/* Mobile Responsive for Hero Banner */
@media (max-width: 768px) {
    .hero-banner {
        height: 100vh;
        min-height: 100vh;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-bottom: -30px;
    }

    .hero-banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-width: none;
    }

    .hero-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-width: none;
    }
}

/* Mobile Responsive for Hero */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-banner-container {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        padding: 20px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        line-height: 1.1;
        text-align: center;
    }
}

/* Tablet Responsive for Ana Banner */
@media (max-width: 1024px) and (min-width: 769px) {
    .ana {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-top: -70px;
    }

        .ana img {
            object-fit: cover;
            object-position: center;
        }
}

/* Tablet Responsive for Hero Banner */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-banner {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .hero-banner-img {
        object-fit: cover;
        object-position: center;
    }

    .hero-banner img {
        object-fit: cover;
        object-position: center;
    }
}

/* Tablet Responsive for Hero */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-banner-image {
        object-fit: cover;
        object-position: center;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .content-wrapper {
        margin-top: 70px;
        padding: 25px 10px 25px 10px;
        z-index: 10;
        min-height: 35px;
        font-size: 18px;
        margin-bottom: 30px;
        border-top: 1px solid transparent;
    }

    .ana {
        height: 100vh;
        min-height: 100vh;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-top: -70px;
        margin-bottom: -20px;
        position: relative;
        overflow: hidden;
    }

        .ana img {
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            object-position: center;
            max-width: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

    .hero-banner {
        height: 100vh;
        min-height: 100vh;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-bottom: -20px;
    }

    .hero-banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-width: none;
    }

    .hero-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-width: none;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-banner-container {
        width: 100%;
        height: 100%;
    }

    .hero-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-title {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }

    .services {
        padding: 30px 0 50px 0;
        margin-top: 0;
    }

    .services-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .services-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .services-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .services-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .service-item {
        flex-direction: column;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        width: 100%;
        padding: 18px 16px 6px 16px;
    }

        .service-content h3 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .service-content ul {
            margin-bottom: 8px;
        }

        .service-content li {
            font-size: 13px;
            margin-bottom: 2px;
        }

    .read-more {
        margin-top: 5px;
    }
}

/* Mobile Responsive for Content Wrapper */
@media (max-width: 768px) {
    .content-wrapper {
        margin-top: 70px;
        padding: 30px 15px 30px 15px;
        z-index: 10;
        min-height: 40px;
        font-size: 20px;
        margin-bottom: 40px;
        border-top: 1px solid transparent;
    }
}

/* Mobile Responsive for Ana Banner */
@media (max-width: 768px) {
    .ana {
        height: 100vh;
        min-height: 100vh;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-top: -70px;
        margin-bottom: -30px;
        position: relative;
        overflow: hidden;
    }

        .ana img {
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            object-position: center;
            max-width: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
    }
}

/* Mobile Responsive for Services */
@media (max-width: 768px) {
    .services {
        padding: 40px 0 60px 0;
        margin-top: 0;
    }
    
    .services-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .services-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .services-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .services-grid {
        gap: 24px;
        padding: 0 20px;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-image {
        width: 100%;
        height: 200px;
    }
    
    .service-content {
        width: 100%;
        padding: 20px 20px 8px 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
            margin-bottom: 6px;
    }
    
        .service-content ul {
        margin-bottom: 10px;
            margin-top: 0;
        }

        .service-content li {
            font-size: 14px;
            margin-bottom: 3px;
        }

    .read-more {
        margin-top: 8px;
    }
}

/* Banner Section */
.banner-section {
    padding: 0;
    background: #fff;
    margin-top: -30px;
}

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

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.01);
}

/* Mobile Responsive for Banner */
@media (max-width: 768px) {
    .banner-section {
        margin-top: -15px;
    }
}

/* Menu Cards Section */
.menu-cards {
    padding: 40px 0;
    background: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 12px 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.menu-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    border-radius: 0 0 12px 12px;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-image {
    transform: scale(1.03);
}

/* Mobile Responsive for Menu Cards */
@media (max-width: 768px) {
    .menu-cards {
        padding: 30px 0;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }
    
    .menu-image {
        min-height: 150px;
    }
}

/* References Section */
.references {
    padding: 60px 0;
    background: #f8f9fa;
}

.references-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.references-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-btn {
    width: 60px;
    height: 40px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: scale(1.05);
}

.carousel-btn i {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.references-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin: 0 20px;
}

.references-track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s ease-in-out;
    width: max-content;
    transform: translateX(0);
}

.reference-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e9ecef;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    height: 120px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.reference-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.reference-card:hover .reference-logo {
    filter: grayscale(0%);
}

/* Mobile Responsive for References */
@media (max-width: 768px) {
    .references {
        padding: 40px 0;
    }
    
    .references-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .references-carousel {
        gap: 15px;
        padding: 0 20px;
    }
    
    .references-track {
        gap: 15px;
    }
    
    .reference-card {
        min-width: auto;
        height: 100px;
        padding: 20px;
    }
    
    .reference-logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .references-track {
        gap: 10px;
    }
    
    .reference-card {
        height: 80px;
        padding: 15px;
        min-width: 120px;
    }
    
    .reference-logo {
        max-height: 50px;
    }
}

/* News Section */
.news {
    padding: 60px 0;
    background: #fff;
}

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

.news-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.profile-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    display: block;
}

.profile-info p {
    font-size: 12px;
    color: #999;
    margin: 0;
    display: block;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.social-icon i {
    color: #000;
    font-size: 16px;
}

.news-content {
    margin-bottom: 15px;
}

.news-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.read-more-text {
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-text:hover {
    color: #fec619;
}

.news-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Facilities Section */
.facilities {
    padding: 0;
    background: #f8f9fa;
    margin-bottom: 0;
}

.facilities-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.map-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.map-iframe {
    width: 100%;
    height: 100vh;
    border: none;
    filter: grayscale(100%);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Mobile Responsive for News and Facilities */
@media (max-width: 768px) {
    .news {
        padding: 40px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .news-card {
        padding: 15px;
    }
    
    .news-image {
        height: 150px;
    }
    
    .facilities {
        padding: 0;
    }
    
    .facilities-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .map-iframe {
        height: 100vh;
    }
    
    .map-overlay {
        padding: 15px 25px;
    }
    
    .map-overlay h3 {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #010a31;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.footer-logo-text {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-logo img {
    height: 50px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #fff;
    font-size: 14px;
}

.social-links h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.social-icon i {
    font-size: 16px;
    color: #000000 !important;
}

.social-icon .fa-instagram {
    color: #000000 !important;
}

.social-icon .fa-facebook-f {
    color: #000000 !important;
}

.social-icon .fa-youtube {
    color: #000000 !important;
}

.copyright {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.website-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.website-link {
    font-size: 12px;
    color: #ffed4e;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.website-link:hover {
    color: #ffd700;
}

.developer-text {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin: 0;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 120px;
    height: 120px;
}

.footer-center-image {
    object-fit: contain;
}

.signal-circle {
    position: absolute;
    width: 30px;
    height: 30px;
}

.signal-circle:nth-child(1) {
    top: 20px;
    left: 20px;
}

.signal-circle:nth-child(2) {
    top: 20px;
    right: 20px;
}

.signal-circle:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.signal-ring {
    position: absolute;
    border: 2px solid #ffed4e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.signal-ring:nth-child(1) {
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
}

.signal-ring:nth-child(2) {
    width: 45px;
    height: 45px;
    top: -7.5px;
    left: -7.5px;
    animation-delay: 0.5s;
}

.signal-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    top: -15px;
    left: -15px;
    animation-delay: 1s;
}

.car-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: #ffed4e;
    height: 2px;
}

.line:nth-child(1) {
    top: 35px;
    left: 50px;
    width: 20px;
    transform: rotate(45deg);
}

.line:nth-child(2) {
    top: 35px;
    right: 50px;
    width: 20px;
    transform: rotate(-45deg);
}

.footer-right {
    flex: 1;
    display: flex;
    gap: 40px;
}

.footer-address h4,
.footer-services h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.footer-address p {
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.5;
    font-size: 14px;
}

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

.footer-services li {
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
}

.footer-services li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services li a:hover {
    color: #f6c624;
    text-decoration: none;
}

/* Footer contact links style override */
.footer-address .footer-contact {
    color: #fff;
    text-decoration: none;
}
.footer-address .footer-contact:hover {
    color: #fff;
    text-decoration: none;
}

.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, rgba(246, 198, 36, 0.2) 0%, rgba(246, 198, 36, 0.3) 20%, rgba(246, 198, 36, 0.4) 30%, #f6c624 50%, rgba(246, 198, 36, 0.4) 70%, rgba(246, 198, 36, 0.3) 80%, rgba(246, 198, 36, 0.2) 100%);
    margin: 20px 0;
    filter: blur(0.5px);
    position: relative;
}

.footer-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.1) 100%);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 12px;
    color: #fff;
    margin: 0;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Keyframe Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDropdown {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(135deg, #010B31 0%, #010B31 50%, #010B31 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 20px 0 0 0;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9999;
        overflow-y: auto;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobil menüde logo */
        .nav::before {
            content: '';
            display: block;
            width: 100%;
            height: 100px;
            background: url('../images/logo_mobil.png') no-repeat left center;
            background-size: 160px auto;
            margin-bottom: 30px;
            margin-left: 30px;
            padding-left: 50px;
            border-bottom: 2px solid rgba(255, 237, 78, 0.3);
        }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
        align-items: stretch;
    }
    
    .nav.active .nav-list {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-item {
        width: 100%;
        text-align: left;
        margin: 0;
        opacity: 0;
        transform: translateX(-30px);
        animation: slideInLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    
        .nav-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .nav-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .nav-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .nav-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .nav-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .nav-item:nth-child(6) {
            animation-delay: 0.6s;
        }
    
    .nav.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-link {
        color: #FFC61A;
        font-size: 16px;
        font-weight: 600;
        padding: 20px 30px;
        display: block;
        width: 100%;
        text-decoration: none;
        border-radius: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        background: transparent;
        border: none;
        margin: 0;
        border-bottom: 1px solid rgba(255, 237, 78, 0.2);
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: rgba(255, 237, 78, 0.1);
        color: #ffffff;
        transform: translateX(10px);
        box-shadow: none;
        border-color: rgba(255, 237, 78, 0.3);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(0);
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0;
        border-radius: 0;
        padding: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        list-style: none;
        border: none;
        backdrop-filter: none;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        transform: translateY(0);
    }
    
    .dropdown-link {
        color: #ffffff;
        padding: 15px 50px;
        display: block;
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 0;
        margin: 0;
        position: relative;
        overflow: hidden;
        opacity: 1;
        transform: translateX(0);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown.active .dropdown-link {
        opacity: 1;
        transform: translateX(0);
    }
    
    .dropdown-link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .dropdown-link:nth-child(2) {
        animation-delay: 0.15s;
    }

    .dropdown-link:nth-child(3) {
        animation-delay: 0.2s;
    }

    .dropdown-link:nth-child(4) {
        animation-delay: 0.25s;
    }

    .dropdown-link:nth-child(5) {
        animation-delay: 0.3s;
    }

    .dropdown-link:nth-child(6) {
        animation-delay: 0.35s;
    }
    
    .dropdown-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #ffed4e 0%, #ffd700 50%, #ffed4e 100%);
        transform: scaleY(0);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 0 2px 2px 0;
    }
    
    .dropdown-link::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 237, 78, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .dropdown-link:hover::before {
        transform: scaleY(1);
    }
    
    .dropdown-link:hover::after {
        left: 100%;
    }
    
    .dropdown-link:hover {
        background: rgba(255, 237, 78, 0.1);
        color: #000000;
        transform: translateX(15px);
        padding-left: 65px;
        box-shadow: none;
    }
    
    /* Mobil İç içe Dropdown (Submenu) Stilleri */
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu .has-submenu {
        display: block;
        color: #ffffff;
        padding: 15px 50px;
        cursor: pointer;
        padding-right: 60px; /* Ok ikonu için alan bırak */
    }
    
    .dropdown-submenu .has-submenu:hover {
        transform: none !important; /* Alt menüsü olanlarda transform'u devre dışı bırak */
        padding-left: 50px !important; /* Padding değişimini de engelle */
    }
    
    /* Mobil ok ikonu toggle butonu */
    .submenu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 6px;
        width: 28px !important;
        height: 28px !important;
        position: absolute !important;
        right: 0px !important;
        top: 0px !important;
        transform: none !important;
        z-index: 10;
        background: transparent;
        border: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        flex-shrink: 0;
        box-sizing: border-box;
        will-change: auto;
        margin: 0 !important;
        left: auto !important;
        float: none !important;
    }
    
    .submenu-toggle i {
        font-size: 10px;
        transition: transform 0.3s ease;
        color: #ffffff;
        pointer-events: none;
        display: block;
        line-height: 1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dropdown-submenu.active .submenu-toggle {
        background: rgba(255, 237, 78, 0.1);
        transform: none !important;
        position: absolute !important;
        right: 0px !important;
        top: 0px !important;
        width: 28px !important;
        height: 28px !important;
        left: auto !important;
        margin: 0 !important;
        padding: 6px !important;
        float: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .dropdown-submenu.active .submenu-toggle i {
        transform: rotate(90deg);
        color: #ffed4e;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin: 0 !important;
    }
    
    /* Çok küçük ekranlar için ek ayarlar */
    @media (max-width: 360px) {
        .submenu-toggle {
            right: 0px !important;
            top: 0px !important;
            width: 24px !important;
            height: 24px !important;
            padding: 4px;
            transform: none !important;
        }
        
        .dropdown-submenu.active .submenu-toggle {
            right: 0px !important;
            top: 0px !important;
            width: 24px !important;
            height: 24px !important;
            padding: 4px !important;
            transform: none !important;
        }
        
        .submenu-toggle i {
            font-size: 8px;
        }
    }
    
    /* Orta boy ekranlar için optimize */
    @media (min-width: 361px) and (max-width: 480px) {
        .submenu-toggle {
            right: 0px !important;
            top: 0px !important;
            width: 30px !important;
            height: 30px !important;
            transform: none !important;
        }
        
        .dropdown-submenu.active .submenu-toggle {
            right: 0px !important;
            top: 0px !important;
            width: 30px !important;
            height: 30px !important;
            transform: none !important;
        }
    }
    
    /* Büyük mobil ekranlar için */
    @media (min-width: 481px) and (max-width: 768px) {
        .submenu-toggle {
            right: 0px !important;
            top: 0px !important;
            width: 32px !important;
            height: 32px !important;
            transform: none !important;
        }
        
        .dropdown-submenu.active .submenu-toggle {
            right: 0px !important;
            top: 0px !important;
            width: 32px !important;
            height: 32px !important;
            transform: none !important;
        }
    }
    
    .dropdown-submenu-content {
        position: static !important;
        background: rgba(0, 0, 0, 0.3);
        padding: 0;
        list-style: none;
        max-height: 0 !important;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown-submenu.active .dropdown-submenu-content {
        max-height: 500px !important;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-submenu-content .dropdown-link {
        padding-left: 70px !important;
        font-size: 13px;
        color: #ffffff;
    }
    
    .dropdown-submenu-content .dropdown-link:hover {
        background: rgba(255, 237, 78, 0.1);
        color: #000000;
        padding-left: 75px !important;
    }
    
    .search-box {
        display: none;
    }
    
    .search-box input {
        width: 100%;
        padding: 16px 20px 16px 50px;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 16px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .search-box input:focus {
        outline: none;
        border-color: rgba(255, 237, 78, 0.5);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 0 20px rgba(255, 237, 78, 0.2);
    }
    
    .search-box input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .search-box i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.3s ease;
    }
    
    .search-box:focus-within i {
        color: #ffed4e;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-logo-image {
        height: 35px;
        max-width: 140px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
    }
    
    .hero .container {
        padding: 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-left,
    .footer-right {
        flex: none;
        width: 100%;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
        margin: 0 auto 20px auto;
    }

        .footer-logo img {
            margin: 0 auto;
            display: block;
        }

    .footer-description {
        margin-bottom: 20px;
    }

    .social-links {
        margin-bottom: 0;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-address,
    .footer-services {
        margin-bottom: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-address h4,
    .footer-services h4 {
        font-size: 20px;
            margin-bottom: 20px;
        }

        .footer-address p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .footer-services ul {
            margin: 0;
            padding: 0;
        }

        .footer-services li {
            margin-bottom: 12px;
        }

        .footer-services li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-services li a:hover {
            color: #f6c624;
            text-decoration: none;
        }

    .social-links {
        margin-bottom: 25px;
    }

        .social-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }

    .social-icons {
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .footer-description {
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .footer-address h4,
    .footer-services h4 {
        font-size: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-center-image {
        display: none;
    }
    
    .network-graphic {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }
    
    .website-section {
        justify-content: center;
        margin-bottom: 10px;
    }

    .copyright {
        margin-bottom: 10px;
    }

    .footer-separator {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .social-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .map {
        width: 100%;
        height: 300px;
    }

    /* Footer Mobile Small */
    .footer-content {
        gap: 12px;
        padding: 0 15px;
    }

    .footer-logo {
        margin: 0 auto 20px auto;
    }

    .footer-description {
        margin-bottom: 20px;
    }

    .social-links {
        margin-bottom: 0;
    }

    .footer-right {
        gap: 8px;
        align-items: center;
    }

    .footer-address,
    .footer-services {
        margin-bottom: 0;
        width: 100%;
        text-align: center;
    }

        .footer-address h4,
        .footer-services h4 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .footer-address p {
            margin-bottom: 12px;
        }

        .footer-services li {
            margin-bottom: 10px;
        }

        .footer-services li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-services li a:hover {
            color: #f6c624;
            text-decoration: none;
        }

    .social-links {
        margin-bottom: 20px;
    }

        .social-links h4 {
            font-size: 16px;
            margin-bottom: 15px;
        }

    .social-icons {
        gap: 12px;
        margin-bottom: 20px;
    }

    .footer-description {
        margin-bottom: 20px;
    }

    .footer-bottom {
        gap: 12px;
        padding: 15px 0;
    }

    .footer-separator {
        margin: 15px 0;
    }
}

/* About Header Section */
.about-header {
    background: #f8f9fa;
    padding: 100px 0 80px;
    text-align: left;
    margin-top: 70px;
}

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

.about-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin: 0;
    line-height: 1.2;
    max-width: 600px;
}

/* Mobile About Header */
@media (max-width: 768px) {
    .about-header {
        padding: 20px 0 15px;
        margin-top: 60px;
        text-align: center;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .about-header .container {
        padding: 0 20px;
    }
    
    .about-main-title {
        font-size: 22px;
        line-height: 1.2;
        max-width: 100%;
        color: #333;
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        margin: 0;
    }
}

@media (max-width: 480px) {
    .about-header {
        padding: 15px 0 10px;
        margin-top: 50px;
        border-radius: 0 0 15px 15px;
    }
    
    .about-main-title {
        font-size: 18px;
        line-height: 1.3;
    }
}

/* Biz Kimiz Section */
.biz-kimiz {
    background: #1a1a2e;
    color: #fff;
    padding: 120px 0;
}

.biz-kimiz .content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 180px;
    max-width: 1200px;
    margin: 0 auto;
}

.biz-kimiz .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    flex: 0 0 120px;
    line-height: 1.2;
    white-space: nowrap;
}

.biz-kimiz .text-content {
    flex: 1;
}

.biz-kimiz .text-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

/* Vizyonumuz Section */
.vizyonumuz {
    background: #fff;
    color: #333;
    padding: 120px 0;
}

.vizyonumuz .content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 160px;
    max-width: 1200px;
    margin: 0 auto;
}

.vizyonumuz .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin: 0;
    flex: 0 0 120px;
    line-height: 1.2;
    white-space: nowrap;
}

.vizyonumuz .text-content {
    flex: 1;
}

.vizyonumuz .text-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin: 0;
    font-weight: 300;
}

/* Misyonumuz Section */
.misyonumuz {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/hak.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 120px 0;
}

.misyonumuz .content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 150px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.misyonumuz .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    flex: 0 0 120px;
    line-height: 1.2;
    white-space: nowrap;
}

.misyonumuz .text-content {
    flex: 1;
}

.misyonumuz .text-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #fec619;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(254, 198, 25, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(254, 198, 25, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 48px;
    color: #1a1a1a;
}

.service-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.service-list li {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: left;
    padding-left: 0;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

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

.about-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fec619, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #1a1a1a;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.stats-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #fec619;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.team-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fec619;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-overview .services-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-header {
        padding: 80px 0 60px;
        margin-top: 70px;
    }
    
    .about-header .container {
        padding: 0 20px;
    }
    
    .about-main-title {
        font-size: 32px;
        max-width: 100%;
        text-align: left;
    }
    
    .biz-kimiz,
    .vizyonumuz,
    .misyonumuz {
        padding: 100px 0;
    }
    
    .biz-kimiz .content-wrapper,
    .vizyonumuz .content-wrapper,
    .misyonumuz .content-wrapper {
        flex-direction: column;
        gap: 40px;
        
        max-width: 100%;
    }
    
    .biz-kimiz .section-title,
    .vizyonumuz .section-title,
    .misyonumuz .section-title {
        font-size: 32px;
        flex: none;
        text-align: left;
    }
    
    .biz-kimiz .text-content p,
    .vizyonumuz .text-content p,
    .misyonumuz .text-content p {
        font-size: 18px;
        text-align: center;
        font-weight: 300;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .about-card h3 {
        font-size: 20px;
    }
    
    .story-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .story-text h2 {
        font-size: 28px;
    }
    
    .story-text p {
        font-size: 16px;
    }
    
    .story-image img {
        height: 250px;
    }
    
    .statistics {
        padding: 60px 0;
    }
    
    .stats-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-title {
        font-size: 28px;
    }
    
    .team-description {
        font-size: 16px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
    
    .team-card h3 {
        font-size: 20px;
    }
    
    .services-overview {
        padding: 60px 0;
    }
    
    .services-overview .services-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Mobile Responsive for Services Grid */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-list li {
        font-size: 15px;
        margin-bottom: 6px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

    .service-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .service-card:nth-child(4) {
        animation-delay: 0.4s;
    }

/* Hover Effects */
.nav-link:hover {
    transform: translateY(-2px);
}

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

.reference-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

/* About Page Styles */
.about-header {
    background: rgb(248, 249, 250);
    padding: 120px 0 80px;
    text-align: left;
    color: #000;
    position: relative;
    overflow: hidden;
}

    .about-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

.about-header-content {
    position: relative;
    z-index: 2;
}

.about-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #010B31;
    margin-bottom: 20px;
    text-align: left;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #fec619;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Biz Kimiz Section */
.biz-kimiz {
    background: #1a1a2e;;
    padding: 80px 0;
    color: #333;
}

.biz-kimiz .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.biz-kimiz .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: left;
}

.biz-kimiz .text-content {
    max-width: 800px;
}

.biz-kimiz .text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-section {
    margin-bottom: 80px;
}

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

.about-section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section:nth-child(even) .about-section-content {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.about-image {
    flex: 1;
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vision-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.mission-section {
    background: linear-gradient(135deg, #fec619 0%, #ffed4e 100%);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

    .mission-section .about-section-title,
    .mission-section .about-description {
        color: #1a1a1a;
    }

.vision-icon,
.mission-icon {
    width: 120px;
    height: 120px;
    background: #fec619;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 48px;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(254, 198, 25, 0.3);
}

.mission-icon {
    background: #1a1a1a;
    color: #fec619;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
}

/* Statistics Section */
.statistics {
    background: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fec619;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.team-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.team-card {
    text-align: center;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-image {
    margin-bottom: 20px;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fec619;
}

.team-name {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.team-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

    .services-overview .services-title {
        font-family: 'Outfit', sans-serif;
        font-size: 42px;
        font-weight: 700;
        color: #1a1a1a;
        text-align: center;
        margin-bottom: 20px;
    }

    .services-overview .services-description {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        color: #666;
        text-align: center;
        margin-bottom: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-overview-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

    .service-overview-card .service-icon {
        width: 80px;
        height: 80px;
        background: #fec619;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 32px;
        color: #1a1a1a;
    }

    .service-overview-card h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .service-overview-card p {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        color: #666;
        line-height: 1.6;
    }

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 36px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .biz-kimiz {
        padding: 60px 0;
    }
    
    .biz-kimiz .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .biz-kimiz .text-content p {
        font-size: 16px;
        font-weight: 300;
    }

    .about-section-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-section:nth-child(even) .about-section-content {
        flex-direction: column;
    }

    .about-section-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-overview-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 28px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .biz-kimiz {
        padding: 40px 0;
    }
    
    .biz-kimiz .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .biz-kimiz .text-content p {
        font-size: 15px;
        font-weight: 300;
    }

    .about-section-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .vision-icon,
    .mission-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

/* Project Content Styles */
.project-content {
    padding: 60px 0;
    background: #fff;
}

.project-main-title {
    text-align: left;
    margin-bottom: 30px;
}

.project-main-title h1 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.project-intro {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 40px;
}

.project-intro p {
    font-size: 17px;
    line-height: 1.4;
    color: #666;
}

.project-sections {
    max-width: 1200px;
    margin: 0 auto;
}

.project-section {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    text-align: left;
}

.project-section:hover {
    transform: none;
    box-shadow: none;
}

.section-number {
    width: 50px;
    height: 50px;
    background: #fec619;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-right: 25px;
    flex-shrink: 0;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: left;
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.section-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.4;
    color: #333;
}

.section-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 18px;
}

.section-result,
.section-aim,
.section-advantage {
    margin-top: 10px;
    font-size: 17px;
    color: #333;
}

.section-result strong,
.section-aim strong,
.section-advantage strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Mobile Responsive for Project Content */
@media (max-width: 768px) {
    .project-content {
        padding: 60px 0;
    }
    
    .project-intro {
        margin-bottom: 40px;
    }
    
    .project-intro p {
        font-size: 16px;
    }
    
    .project-section {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .section-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 0;
        margin-bottom: 20px;
        align-self: flex-start;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .section-list li {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .section-result,
    .section-aim,
    .section-advantage {
        padding: 12px 15px;
        font-size: 15px;
    }
}

/* Blog Content Styles */
.blog-content {
    padding: 60px 0;
    background: #fff;
}

.blog-post {
    margin-bottom: 60px;
    background: #fff;
    padding: 0 20px;
}

.blog-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.blog-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-text {
    margin-bottom: 25px;
}

.blog-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.read-more-btn {
    background: #fec619;
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background: #e6b300;
}

.read-more-btn .dot {
    color: #1a1a1a;
    font-weight: bold;
}

/* HGS Advertisement */
.hgs-ad {
    background: #1e3a8a;
    padding: 40px;
    border-radius: 12px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hgs-graphic {
    flex: 0 0 200px;
}

.hgs-logo {
    position: relative;
    width: 180px;
    height: 180px;
    background: #fec619;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.wifi-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
}

.hgs-text {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
}

.park-text {
    font-size: 18px;
    font-weight: 700;
}

.map-icons {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 8px;
}

.p-icon {
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    color: #fec619;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.hgs-content {
    flex: 1;
    color: #fff;
}

.hgs-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hgs-description {
    font-size: 18px;
    line-height: 1.5;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.hgs-website {
    font-size: 16px;
    color: #fec619;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
}

.page-btn {
    background: none;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.page-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number.active {
    background: #fec619;
    color: #1a1a1a;
}

.page-number:hover:not(.active) {
    background: #f3f4f6;
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.faq-highlight {
    color: #fec619;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item.active {
    border-color: #fec619;
}

.faq-question {
    padding: 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fec619;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    background: #fff;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 200px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-content {
        padding: 40px 0;
    }
    
    .blog-title {
        font-size: 24px;
    }
    
    .blog-image {
        margin-bottom: 15px;
        width: 100%;
    }
    
    .blog-post {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .hgs-ad {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hgs-graphic {
        flex: none;
        margin-bottom: 20px;
    }
    
    .hgs-title {
        font-size: 24px;
    }
    
    .hgs-description {
        font-size: 16px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* IK Content Styles */
.ik-content {
    padding: 80px 0;
    background: #fff;
}

.ik-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.ik-left {
    flex: 1;

}

.ik-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.ik-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.ik-right {
    flex: 1;
}



.ik-form-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.ik-form-subtitle {
    color: #fec619;
    font-weight: 800;
}

.ik-form {
    display: flex;
    flex-direction: column;
  
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1;
    grid-column: 1 / -1;
}

.form-group.half-width {
    flex: 1;
}

.ik-form input,
.ik-form select,
.ik-form textarea {
    padding: 15px;
    border: none;
    font-size: 14px;
    background: #f8f9fa;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.ik-form input:focus,
.ik-form select:focus,
.ik-form textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px #fec619;
}

.ik-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.ik-form textarea {
    resize: vertical;
    min-height: 80px;
}

.ik-submit-btn {
    background: #fec619;
    color: #1a1a1a;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.ik-submit-btn:hover {
    background: #e6b300;
}

/* Mobile Responsive for IK */
@media (max-width: 768px) {
    .ik-content {
        padding: 60px 0;
    }
    
    .ik-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .ik-left,
    .ik-right {
        max-width: 100%;
    }
    
    .ik-main-title {
        font-size: 28px;
    }
    
    .ik-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group.half-width {
        flex: 1;
    }
}

/* Kariyer Content Styles */
.kariyer-content {
    padding: 80px 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.kariyer-form-container {
    width: 100%;
    text-align: center;
    padding: 0 40px;
}

.kariyer-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.kariyer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kariyer-form {
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1;
    grid-column: 1 / -1;
}

.form-group.half-width {
    flex: 1;
}

.kariyer-form input,
.kariyer-form select,
.kariyer-form textarea {
    padding: 20px 25px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    color: #333;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
}

.kariyer-form input:focus,
.kariyer-form select:focus,
.kariyer-form textarea:focus {
    outline: none;
    border-color: #fec619;
}

.kariyer-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.file-upload-container {
    position: relative;
}

.file-upload-container textarea {
    width: 100%;
    resize: vertical;
    min-height: 100px;
}

.file-upload {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
}

.file-upload:hover {
    color: #fec619;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-submit {
    text-align: right;
    margin-top: 20px;
}

.kariyer-submit-btn {
    background: #fec619;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kariyer-submit-btn:hover {
    background: #e6b300;
}

.kariyer-submit-btn .dot {
    color: #1a1a1a;
    font-weight: bold;
}

/* Mobile Responsive for Kariyer */
@media (max-width: 768px) {
    .kariyer-content {
        padding: 60px 0;
        min-height: auto;
    }
    
    .kariyer-form-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .kariyer-main-title {
        font-size: 28px;
    }
    
    .kariyer-form {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .form-group.half-width {
        flex: 1;
    }
    
    .file-upload {
        position: static;
        margin-top: 10px;
        justify-content: center;
    }
    
    .form-submit {
        text-align: center;
    }
}

/* İletişim Content Styles */
.iletisim-content {
    padding: 80px 0;
    background: #fff;
}

.iletisim-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.iletisim-left {
    flex: 1;
    max-width: 50%;
}

.iletisim-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.iletisim-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1;
    grid-column: 1 / -1;
}

.form-group.half-width {
    flex: 1;
}

.iletisim-form input,
.iletisim-form textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #333;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
}

.iletisim-form input:focus,
.iletisim-form textarea:focus {
    outline: none;
    border-color: #fec619;
}

.iletisim-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: left;
    margin-top: 10px;
}

.iletisim-submit-btn {
    background: #fec619;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.iletisim-submit-btn:hover {
    background: #e6b300;
}

.iletisim-submit-btn .dot {
    color: #1a1a1a;
    font-weight: bold;
}

.iletisim-right {
    flex: 1;
    max-width: 50%;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    text-align: left;
    padding-top: 70px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
}

.contact-icon i {
    font-size: 24px;
    color: #b1b1b1;
}

.contact-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.contact-text {
    font-size: 18px;
    line-height: 1.5;
    color: #1a1a1a;
    font-weight: 400;
    flex: 1;
}

.contact-text a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-text a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

/* Mobile Responsive for İletişim */
@media (max-width: 768px) {
    .iletisim-content {
        padding: 60px 0;
    }
    
    .iletisim-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .iletisim-left,
    .iletisim-right {
        max-width: 100%;
    }
    
    .iletisim-main-title {
        font-size: 28px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group.half-width {
        flex: 1;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .contact-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .contact-text {
        font-size: 14px;
    }
}

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

/* Loading Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.stat-circle {
    animation: pulse 2s infinite;
}

    .stat-circle:nth-child(1) {
        animation-delay: 0s;
    }

    .stat-circle:nth-child(2) {
        animation-delay: 0.2s;
    }

    .stat-circle:nth-child(3) {
        animation-delay: 0.4s;
    }

    .stat-circle:nth-child(4) {
        animation-delay: 0.6s;
    }

    .stat-circle:nth-child(5) {
        animation-delay: 0.8s;
    }

/* Map Section Styles */
.map-section {
    background: #f8f9fa;
    padding: 0px 0;
    position: relative;
}

.map-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.map-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    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;
    display: block;
}

/* Mobile Responsive for Map Section */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .map-container {
        margin: 0 20px;
        border-radius: 8px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 40px 0;
    }
    
    .map-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .map-container {
        margin: 0 15px;
        border-radius: 6px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Hizmetlerimiz Page Styles */
.services-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #fec619;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.main-services {
    padding: 80px 0;
    background: #fff;
}

.additional-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #fec619;
    padding: 25px 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #1a1a1a;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.process-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
    color: #fec619;
}

.cta-button {
    display: inline-block;
    background: #fec619;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 198, 25, 0.3);
    text-decoration: none;
    color: #1a1a1a;
}

/* Mobile Responsive for Hizmetlerimiz Page */
@media (max-width: 768px) {
    .services-header {
        padding: 100px 0 60px;
    }
    
    .services-main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .services-main-description {
        font-size: 16px;
    }
    
    .main-services,
    .additional-services,
    .process-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 80px 0 40px;
    }
    
    .services-main-title {
        font-size: 28px;
    }
    
    .services-main-description {
        font-size: 15px;
    }
    
    .main-services,
    .additional-services,
    .process-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 18px 12px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blog-header-content {
    position: relative;
    z-index: 2;
}

.blog-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.blog-main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #fec619;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-content {
    padding: 80px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fec619;
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.blog-post-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.blog-date {
    color: #999;
}

.blog-author {
    color: #fec619;
    font-weight: 600;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fec619;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #1a1a1a;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #fec619;
    color: #1a1a1a;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: #fec619;
    color: #1a1a1a;
}

.pagination-dots {
    color: #999;
    font-size: 16px;
}

.newsletter-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.newsletter-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fec619;
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.newsletter-btn {
    padding: 15px 30px;
    background: #fec619;
    color: #1a1a1a;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Blog Mobile Responsive */
@media (max-width: 768px) {
    .blog-header {
        padding: 100px 0 60px;
    }
    
    .blog-main-title {
        font-size: 36px;
    }
    
    .blog-main-description {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .blog-content {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-excerpt {
        font-size: 13px;
    }
    
    .blog-pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pagination-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .newsletter-input {
        font-size: 14px;
    }
    
    .newsletter-btn {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 80px 0 50px;
    }
    
    .blog-main-title {
        font-size: 28px;
    }
    
    .blog-main-description {
        font-size: 16px;
    }
    
    .blog-content {
        padding: 50px 0;
    }
    
    .blog-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .blog-post-image {
        height: 180px;
    }
    
    .blog-post-content {
        padding: 18px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-excerpt {
        font-size: 12px;
    }
    
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-description {
        font-size: 14px;
    }
}

/* Application Page Styles */
.application-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.application-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.application-header-content {
    position: relative;
    z-index: 2;
}

.application-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.application-main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #fec619;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.application-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #010a31;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    text-align: center;
    color: #fff;
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #fec619;
    margin: 0;
}

.application-form {
    padding: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: -30px;
    align-items: start;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    flex: 1;
    min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #fec619;
    box-shadow: 0 0 0 3px rgba(254, 198, 25, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    flex: 1;
}

.form-file {
    width: 100%;
    padding: 12px 16px;
    border: 2px dashed #e9ecef;
    border-radius: 0;
    background: #f8f9fa;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: border-color 0.3s ease;
    flex: 1;
    min-height: 48px;
}

.form-file:hover {
    border-color: #fec619;
}

.form-help {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.form-checkbox {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #fec619;
}

.checkbox-text {
    color: #333;
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-submit,
.btn-reset {
    padding: 15px 30px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-submit {
    background: #fec619;
    color: #1a1a1a;
}

.btn-submit:hover {
    background: #e6b300;
    transform: translateY(-2px);
}

.btn-reset {
    background: #6c757d;
    color: #fff;
}

.btn-reset:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.form-message {
    display: block;
    padding: 15px;
    border-radius: 0;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.why-work-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fec619 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #1a1a1a;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.benefit-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.open-positions {
    padding: 80px 0;
    background: #f8f9fa;
}

.positions-list {
    max-width: 800px;
    margin: 0 auto;
}

.position-item {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.position-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.position-department {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #fec619;
    font-weight: 600;
    margin-bottom: 8px;
}

.position-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.position-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.position-type,
.position-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.position-type {
    background: #e3f2fd;
    color: #1976d2;
}

.position-location {
    background: #f3e5f5;
    color: #7b1fa2;
}

/* Application Mobile Responsive */
@media (max-width: 768px) {
    .application-header {
        padding: 100px 0 60px;
    }
    
    .application-main-title {
        font-size: 36px;
    }
    
    .application-main-description {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .application-form-section {
        padding: 60px 0;
    }
    
    .form-container {
        margin: 0 20px;
    }
    
    .form-header {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .application-form {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-submit,
    .btn-reset {
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .position-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .position-meta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .application-header {
        padding: 80px 0 50px;
    }
    
    .application-main-title {
        font-size: 28px;
    }
    
    .application-main-description {
        font-size: 16px;
    }
    
    .application-form-section {
        padding: 50px 0;
    }
    
    .form-container {
        margin: 0 15px;
    }
    
    .form-header {
        padding: 25px 15px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .application-form {
        padding: 20px 15px;
    }
    
    .benefits-grid {
        padding: 0 15px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .position-item {
        padding: 20px 15px;
    }
}

/* IK Page Styles */
.ik-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ik-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.ik-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.ik-main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #fec619;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.ik-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.ik-layout {
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ik-left {
    background: #fff;
    padding: 40px;
}

.company-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.company-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fec619 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a;
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.ik-right {
    background: #010a31;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ik-form-container {
    color: #fff;
}

.ik-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.ik-form-subtitle {
    color: #fec619;
    display: block;
    font-size: 28px;
    font-weight: 400;
    margin-top: 5px;
}

.ik-form {
    display: flex;
    flex-direction: column;
   
}

.ik-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.ik-form .form-group.full-width {
    grid-column: 1 / -1;
}

.ik-form .form-group.half-width {
    grid-column: auto;
}

.ik-form input,
.ik-form select,
.ik-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #1a1a1a;
}

.ozelcss {
    background-color: #fec619 !important;
    border: 2px solid #fec619 !important;
    font-weight:bold !important;
}
.ik-form input:focus,
.ik-form select:focus,
.ik-form textarea:focus {
    outline: none;
    border-color: #fec619;
    box-shadow: 0 0 0 3px rgba(254, 198, 25, 0.1);
}

.ik-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.ik-form .checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #fec619;
}

.ik-form .form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.ik-form .btn-submit,
.ik-form .btn-reset {
    padding: 15px 30px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.ik-form .btn-submit {
    background: #fec619;
    color: #1a1a1a;
}

.ik-form .btn-submit:hover {
    background: #e6b300;
    transform: translateY(-2px);
}

.ik-form .btn-reset {
    background: #6c757d;
    color: #fff;
}

.ik-form .btn-reset:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.position-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.position-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 25px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.position-type {
    background: #fec619;
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.position-info {
    padding: 25px;
}

.position-department {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #fec619;
    font-weight: 600;
    margin-bottom: 8px;
}

.position-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.position-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-requirements {
    margin-bottom: 20px;
}

.position-requirements h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.position-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.position-requirements li {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

.position-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-salary {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-apply {
    background: #fec619;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: #e6b300;
    transform: translateY(-2px);
    color: #1a1a1a;
    text-decoration: none;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #fec619;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-left {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-details p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.social-links h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #fec619;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.contact-right {
    background: #010a31;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container {
    color: #fff;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

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

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form .form-group.half-width {
    grid-column: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #1a1a1a;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fec619;
    box-shadow: 0 0 0 3px rgba(254, 198, 25, 0.1);
}

.contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.contact-form .checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #fec619;
}

.contact-form .form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.contact-form .btn-submit,
.contact-form .btn-reset {
    padding: 15px 30px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.contact-form .btn-submit {
    background: #fec619;
    color: #1a1a1a;
}

.contact-form .btn-submit:hover {
    background: #e6b300;
    transform: translateY(-2px);
}

.contact-form .btn-reset {
    background: #6c757d;
    color: #fff;
}

.contact-form .btn-reset:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-question i {
    color: #fec619;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
}

.faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Career Page Styles */
.career-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.career-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.career-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.career-main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #fec619;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-join-section {
    padding: 80px 0;
    background: #fff;
}

.application-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fec619 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 auto 20px;
    font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.process-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.career-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fec619;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #fec619;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e6b300;
    transform: translateY(-3px);
    color: #1a1a1a;
    text-decoration: none;
}

/* Mobile Responsive for new pages */
@media (max-width: 768px) {
    .ik-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ik-left,
    .ik-right,
    .contact-left,
    .contact-right {
        padding: 25px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ik-left,
    .ik-right,
    .contact-left,
    .contact-right {
        padding: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* ========================================
   DYNAMIC PAGE STYLES
======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #010B31 0%, #1a1a2e 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/banner.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fec619;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: #fff;
}

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

.page-body {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6 {
    font-family: 'Montserrat', sans-serif;
    color: #010B31;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-body h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid #fec619;
    padding-bottom: 15px;
}

.page-body h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-top: 30px;
}

.page-body h3 {
    font-size: 1.5rem;
    color: #333;
}

.page-body p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-body li {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.page-body strong {
    color: #010B31;
    font-weight: 600;
}

.page-body a {
    color: #fec619;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-body a:hover {
    color: #e6b300;
    text-decoration: underline;
}

.page-body blockquote {
    border-left: 4px solid #fec619;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-body th,
.page-body td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.page-body th {
    background: #fec619;
    color: #010B31;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.page-body tr:hover {
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .page-body {
        padding: 25px;
        margin-top: -20px;
    }
    
    .page-body h1 {
        font-size: 2rem;
    }
    
    .page-body h2 {
        font-size: 1.6rem;
    }
    
    .page-body h3 {
        font-size: 1.3rem;
    }
    
    .page-body p,
    .page-body li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-body {
        padding: 20px;
    }
    
    .page-body h1 {
        font-size: 1.6rem;
    }
}

/* Blog Stilleri */
.blog-author {
    color: #666;
    font-size: 14px;
    margin-left: 15px;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 40px 0;
}

.no-posts-message h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.no-posts-message p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.read-more-btn {
    background: none;
    border: none;
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #0056b3;
    text-decoration: none;
}

.read-more-btn .dot {
    margin-left: 5px;
    font-weight: bold;
}

/* Blog Detay Sayfası Stilleri */
.blog-detail-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-detail-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.blog-meta-info {
    padding: 20px 40px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.meta-value {
    color: #333;
    font-size: 14px;
}

.blog-detail-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: 40px;
}

.blog-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 0 8px 8px 0;
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #1a1a1a;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.blog-content h1 { font-size: 28px; }
.blog-content h2 { font-size: 24px; }
.blog-content h3 { font-size: 20px; }
.blog-content h4 { font-size: 18px; }
.blog-content h5 { font-size: 16px; }
.blog-content h6 { font-size: 14px; }

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-content blockquote {
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.blog-detail-actions {
    padding: 30px 40px;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-to-blog:hover {
    background: #0056b3;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-icon {
    font-size: 18px;
    font-weight: bold;
}

/* İlgili Blog Yazıları */
.related-blogs {
    padding: 60px 0;
    background: #fff;
}

.related-blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-blog-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.related-blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-blog-content {
    padding: 20px;
}

.related-blog-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.related-blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-blog-title a:hover {
    color: #007bff;
    text-decoration: none;
}

.related-blog-meta {
    font-size: 14px;
    color: #666;
}

.related-blog-date {
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-detail-content {
        padding: 40px 0;
    }
    
    .blog-meta-info {
        padding: 15px 20px 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-detail-image {
        height: 200px;
    }
    
    .blog-detail-body {
        padding: 25px 20px;
    }
    
    .blog-excerpt {
        font-size: 16px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .blog-content {
        font-size: 15px;
    }
    
    .blog-detail-actions {
        padding: 20px;
    }
    
    .related-blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Kontrol Paneli Styles */
.kontrol-paneli-mesaj {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #28a745;
    margin: 20px 0;
}

.kontrol-paneli-mesaj h2 {
    color: #28a745;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.kontrol-paneli-mesaj p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.kontrol-paneli-mesaj .iletisim-submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.kontrol-paneli-mesaj .iletisim-submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Başvuru Başarılı Mesajı */
.basvuru-basarili-mesaj {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #007bff;
    margin: 20px 0;
}

.basvuru-basarili-mesaj h2 {
    color: #007bff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.basvuru-basarili-mesaj p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.basvuru-basarili-mesaj .ik-submit-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.basvuru-basarili-mesaj .ik-submit-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Kariyer Başarı Mesajı Styles */
.kariyer-basarili-mesaj {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #28a745;
    margin: 20px 0;
}

.kariyer-basarili-mesaj h2 {
    color: #28a745;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.kariyer-basarili-mesaj p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.kariyer-basarili-mesaj .kariyer-submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.kariyer-basarili-mesaj .kariyer-submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Latest Blogs Section for sayfa.aspx */
.latest-blogs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.latest-blogs-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

.latest-blogs-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    margin-bottom: 12px;
}

.blog-card-date {
    color: #fec619;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.blog-card-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    color: #fec619;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-link:hover {
    color: #1a1a1a;
    gap: 10px;
}

/* Responsive for Blog Cards */
@media (max-width: 992px) {
    .latest-blogs-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .latest-blogs-section {
        padding: 60px 20px;
    }
    
    .latest-blogs-section .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .latest-blogs-section .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .latest-blogs-section {
        padding: 40px 15px;
    }
    
    .latest-blogs-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
}

/* KVKK Floating Button */
.kvkk-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.kvkk-floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #fec619 0%, #f0b90b 100%);
    color: #1a1a1a;
}

.kvkk-floating-btn i {
    font-size: 18px;
}

/* KVKK Popup Overlay */
.kvkk-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.kvkk-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* KVKK Popup */
.kvkk-popup {
    background: #fff;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.kvkk-popup-overlay.active .kvkk-popup {
    transform: scale(1);
}

/* KVKK Popup Header */
.kvkk-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px 15px 0 0;
    color: #fff;
}

.kvkk-popup-header h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.kvkk-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
}

.kvkk-close-btn:hover {
    background: #fec619;
    color: #1a1a1a;
    transform: rotate(90deg);
}

/* KVKK Popup Content */
.kvkk-popup-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.kvkk-popup-content::-webkit-scrollbar {
    width: 8px;
}

.kvkk-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.kvkk-popup-content::-webkit-scrollbar-thumb {
    background: #fec619;
    border-radius: 10px;
}

.kvkk-popup-content::-webkit-scrollbar-thumb:hover {
    background: #f0b90b;
}

.kvkk-popup-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 15px;
}

.kvkk-popup-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    font-weight: 300;
}

.kvkk-popup-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.kvkk-popup-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
    font-weight: 300;
}

.kvkk-popup-content strong {
    font-weight: 600;
}

.kvkk-popup-content a {
    color: #fec619;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kvkk-popup-content a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kvkk-floating-btn {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .kvkk-floating-btn i {
        font-size: 16px;
    }
    
    .kvkk-popup {
        max-height: 90vh;
        border-radius: 10px;
    }
    
    .kvkk-popup-header {
        padding: 20px;
        border-radius: 10px 10px 0 0;
    }
    
    .kvkk-popup-header h3 {
        font-size: 20px;
    }
    
    .kvkk-popup-content {
        padding: 20px;
    }
    
    .kvkk-popup-content h4 {
        font-size: 16px;
    }
    
    .kvkk-popup-content p,
    .kvkk-popup-content li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .kvkk-floating-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .kvkk-floating-btn span {
        display: none;
    }
    
    .kvkk-popup-overlay {
        padding: 10px;
    }
    
    .kvkk-popup-header {
        padding: 15px;
    }
    
    .kvkk-popup-header h3 {
        font-size: 18px;
    }
    
    .kvkk-popup-content {
        padding: 15px;
    }
    
    .kvkk-close-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

