:root {
    --primary-color: #102d54;
    --secondary-color: #1d3f6f;
    --text-color: #f5f6f8;
    --light-bg: #f2f6fc;
    --hover-color: #1b3c6c;
    --heading-color: #0f203d;
    --light-orange: #d4e1f2;
    --dark-orange: #22436e;
    --orange: #2a4f7b;
    --main-red: #0b2342;
    --main-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--main-white);
    color: #393939;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, rgba(35, 37, 63, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(35, 37, 63, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(35, 37, 63, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(35, 37, 63, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: -1;
}

/* Navbar Styles */
.navbar {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.navbar.hide {
    transform: translateY(-120%);
    opacity: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar .logo span {
    color: #f5f5f5;
}

.navbar .logo:hover {
    transform: translateY(-2px);
}

.navbar-collapse {
    flex-basis: auto;
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    width: 100%;
    background: #ffffff;
}

/* Mobil Navbar Sade Tasarım */
@media (max-width: 991px) {
    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.45);
        padding: 8px 10px;
        background: transparent;
        border-radius: 10px;
        z-index: 10000;
        position: relative;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
    }

    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(3, 13, 28, 0.96);
        box-shadow: -6px 0 30px rgba(0, 0, 0, 0.25);
        transition: right 0.3s ease;
        z-index: 1100;
        padding: 84px 22px 24px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: #f4f6fb;
        color: #102d54;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .navbar-collapse .nav-link {
        color: #102d54 !important;
        font-weight: 600;
        padding: 14px 0 !important;
        border-radius: 0;
        transition: all 0.3s ease;
        display: block;
        background: transparent;
        border: none;
        margin: 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:focus {
        background: transparent;
        color: #000000 !important;
        transform: translateX(2px);
    }

    .nav-link::after {
        display: none;
    }
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

@media (min-width: 992px) {
    .mobile-menu-close,
    .mobile-overlay {
        display: none !important;
    }
}

/* Küçük ekranlar için */
@media (max-width: 576px) {
    .navbar-collapse {
        width: 85%;
        padding: 80px 15px 20px 15px;
    }
}

/* Animasyon iyileştirmeleri */
@media (prefers-reduced-motion: reduce) {

    .navbar-collapse,
    .nav-link,
    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        transition: none;
    }
}

/* Add smooth transition for menu items */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    .navbar .logo {
        font-size: 1.5rem;
    }

    .navbar-nav {
        gap: 0.3rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.3rem;
    }
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 30px;
    flex: 1;
    margin-left: 50px;
}

.navbar ul li {
    list-style: none;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    border-radius: 8px;
    overflow: hidden;
}

.navbar ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 37, 63, 0.05);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #08090e;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar ul li a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.navbar ul li a:hover::before {
    color: black;
    transform: translateY(0);
}

.navbar ul li a:hover::after {
    width: 80%;
}

.navbar .logo {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    margin-left: 20px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 37, 63, 0.05);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.navbar .logo:hover {
    transform: translateY(-2px);
}

.navbar .logo:hover::before {
    transform: translateY(0);
}

.navbar .logo span {
    color: #010101;
    font-weight: 800;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.navbar .logo:hover span {
    transform: scale(1.1);
}

.navbar-logo-img {
    height: 183px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: none;
    transition: all 0.3s ease;
    object-fit: contain;
    max-width: 220px;
}

/* Ana Sayfa Stilleri */
.home-section {
    padding: 80px 0 60px;
    position: relative;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-red);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-red);
    border-radius: 2px;
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 2px solid #e0e0e0;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
    color: #23253f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-box p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    color: #4a4a4a;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.6;
}

.goals-list li:last-child {
    border-bottom: none;
}

.goals-list li::before {
    content: '•';
    color: #23253f;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-list li {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #23253f;
}

.difference-list li:last-child {
    margin-bottom: 0;
}

.difference-list li h3 {
    color: #23253f;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.difference-list li p {
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .home-section {
        padding: 60px 0 40px;
    }

    .content-box {
        padding: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar ul {
        gap: 15px;
        margin-left: 20px;
    }

    .navbar ul li a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .navbar .logo {
        font-size: 20px;
    }

    .slider-container {
        height: 50vh;
        min-height: 400px;
        max-height: 500px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .home-section {
        padding: 40px 0 30px;
    }

    .content-box {
        padding: 25px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .goals-list li {
        font-size: 14px;
        padding: 12px 0;
    }

    .difference-list li {
        padding: 20px;
    }

    .difference-list li h3 {
        font-size: 18px;
    }

    .difference-list li p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar ul {
        gap: 10px;
        margin-left: 10px;
    }

    .navbar ul li a {
        font-size: 13px;
        padding: 5px 10px;
    }

    .navbar .logo {
        font-size: 18px;
        margin-left: 10px;
    }

    .slider-container {
        height: 40vh;
        min-height: 300px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .home-section {
        padding: 30px 0 20px;
    }

    .content-box {
        padding: 20px;
        margin-bottom: 20px;
    }
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 550px;
    max-height: 650px;
    overflow: hidden;
    margin-top: 80px;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.1);
    transform: scale(1.1);
    transition: transform 0.8s ease-in-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slide.active img {
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.slide-content p {
    font-size: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Hakkımızda Bölümü Stilleri */
.about-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(35, 37, 63, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(35, 37, 63, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(35, 37, 63, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(35, 37, 63, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: 0;
}

.about-background {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    }

    100% {
        background-position: 40px 40px, 40px 50px, 50px 30px, 30px 40px;
    }
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-section .section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #959798, #384e50);
}

.about-section .section-subtitle {
    font-size: 18px;
    color: #ccc;
}

.about-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 24px;
    color: #959798;
    margin-right: 15px;
}

.feature-item span {
    font-size: 16px;
    color: #fff;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-section .section-title {
        font-size: 28px;
    }
}

/* Ana Sayfa Hero Bölümü */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.0);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    text-align: center;
}

.hero-quote {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 20px;
}

.first-quote {
    animation: slideInFromRight 3s ease forwards, fadeOut 1s ease forwards 3s;
    transform: translateX(30%);
}

.second-quote {
    animation: fadeIn 1s ease forwards 4s;
    opacity: 0;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(30%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-30%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-buttons {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 5s;
}

@media (max-width: 768px) {
    .hero-quote {
        height: 140px;
        margin-bottom: 40px;
    }

    .quote-text {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 15px;
    }

    .hero-buttons {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-quote {
        height: 120px;
        margin-bottom: 30px;
    }

    .quote-text {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .hero-buttons {
        margin-top: 20px;
    }
}

.quote-text:first-child {
    color: #3498DB;
    font-weight: 600;
}

.quote-text:last-child {
    color: #ECF0F1;
    font-weight: 600;
}

.quote-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498DB, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.quote-text:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.quote-text:hover::after {
    transform: scaleX(1);
    height: 3px;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(16, 45, 84, 0.15);
    }

    50% {
        box-shadow: 0 0 20px rgba(16, 45, 84, 0.3);
    }

    100% {
        box-shadow: 0 0 5px rgba(16, 45, 84, 0.15);
    }
}

.hero-text-overlay {
    animation: glow 3s infinite;
}

.btn-primary {
    background: var(--main-red) !important;
    color: var(--main-white) !important;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(16, 45, 84, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 45, 84, 0.35);
    background: var(--secondary-color) !important;
}

.btn-outline {
    background: transparent;
    color: #ECF0F1;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ECF0F1;
    box-shadow: 0 5px 15px rgba(236, 240, 241, 0.1);
}

.btn-outline:hover {
    transform: translateY(-3px);
    background: rgba(236, 240, 241, 0.1);
    box-shadow: 0 8px 25px rgba(236, 240, 241, 0.2);
    border-color: #3498DB;
    color: #3498DB;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }
}

.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

/* Ensure anchored sections are not hidden behind the fixed navbar on small screens */
.reveal-section {
    scroll-margin-top: 110px;
}

.reveal-section.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* İstatistikler Bölümü */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 36px;
    color: #23253f;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #23253f;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: #4a4a4a;
}

/* Özellikler Bölümü */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f6fa 0%, #e8eaf6 100%);
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: #23253f;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #23253f;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* CTA Bölümü */
.cta-section {
    padding: 80px 0;
    background: #23253f;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-light {
    background: var(--main-red) !important;
    color: var(--main-white) !important;
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
}

@media (max-width: 992px) {
    .hero-text-overlay .hero-title {
        font-size: 36px;
    }

    .hero-text-overlay .hero-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-text-overlay .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stat-box {
        margin-bottom: 20px;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay .hero-title {
        font-size: 28px;
    }

    .hero-text-overlay .hero-text {
        font-size: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-text {
        font-size: 14px;
    }

    .feature-box h3 {
        font-size: 20px;
    }

    .feature-box p {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }
}



/* Footer - Modern Design */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #2d3e4f 50%, #1a2635 100%);
    color: #f1f5f9;
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 50%, #f59e0b 100%);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Info Section */
.footer-info {
    position: relative;
}

.footer-logo {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    transition: all 0.4s ease;
    filter: brightness(1.1);
}

.footer-logo-img:hover {
    transform: scale(1.08);
    filter: brightness(1.2);
}

.footer-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #f1f5f9;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

.footer-subtitle {
    text-align: center;
    color: #f59e0b;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px !important;
}

.footer-info > p {
    color: rgba(241, 245, 249, 0.75);
    line-height: 1.7;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(241, 245, 249, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-feature:hover {
    color: #f59e0b;
    transform: translateX(5px);
}

.footer-feature i {
    color: #f59e0b;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-feature:hover i {
    transform: scale(1.2);
}

/* Footer Links */
.footer-links,
.footer-services {
    position: relative;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 25px;
    color: #f1f5f9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-links:hover h4::after,
.footer-services:hover h4::after,
.footer-contact:hover h4::after {
    width: 60px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(241, 245, 249, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

.footer-links ul li a::before,
.footer-services ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover::before,
.footer-services ul li a:hover::before {
    width: 100%;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    position: relative;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(241, 245, 249, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-item:last-child {
    border-bottom: none;
}

.footer-contact-item:hover {
    border-bottom-color: rgba(245, 158, 11, 0.3);
}

.footer-contact-item i {
    font-size: 18px;
    color: #f59e0b;
    margin-top: 2px;
    min-width: 20px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    transform: scale(1.2);
}

.contact-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(241, 245, 249, 0.8);
}

.contact-text strong {
    color: #f1f5f9;
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-text a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-text a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.contact-text span {
    color: rgba(241, 245, 249, 0.75);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 35px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(241, 245, 249, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0 0 15px 0;
    color: rgba(241, 245, 249, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom p strong {
    color: #f1f5f9;
    font-weight: 700;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(241, 245, 249, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: #f59e0b;
}

.legal-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(241, 245, 249, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1f5f9;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #f59e0b;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.social-links a:hover::before {
    opacity: 0.2;
}

@media (max-width: 991px) {
    .footer {
        padding: 70px 0 0;
    }

    .footer-info,
    .footer-links,
    .footer-services,
    .footer-contact {
        margin-bottom: 50px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-info h3 {
        font-size: 24px;
    }

    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 15px;
    }

    .footer-links ul li a,
    .footer-services ul li a {
        font-size: 13px;
    }

    .contact-text {
        font-size: 12px;
    }

    .footer-logo-img {
        height: 65px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-legal {
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-info h3 {
        font-size: 20px;
    }

    .footer-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .footer-links ul li a,
    .footer-services ul li a {
        font-size: 12px;
    }

    .contact-text {
        font-size: 11px;
    }

    .footer-feature {
        font-size: 12px;
    }

    .footer-contact-item {
        margin-bottom: 15px;
        padding-bottom: 12px;
        gap: 10px;
    }

    .footer-bottom {
        padding: 25px 0;
        margin-top: 35px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .legal-link {
        font-size: 11px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-logo-img {
        height: 60px;
    }
}

/* İletişim Bölümü */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-item {
        min-width: 100%;
    }
}

/* Sayfa Hero */
.page-hero {
    background: linear-gradient(rgba(52, 44, 44, 0.8), rgba(52, 44, 44, 0.8)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Hizmetler Bölümü */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.project-section {
    background: linear-gradient(180deg, #050811 0%, #0d1727 55%, #07111f 100%);
    color: #eff3ff;
    position: relative;
}

.project-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 15%, rgba(107, 159, 255, 0.12), transparent 18%),
        radial-gradient(circle at 85% 20%, rgba(170, 205, 255, 0.08), transparent 20%),
        radial-gradient(circle at 50% 90%, rgba(38, 72, 154, 0.12), transparent 25%);
    pointer-events: none;
}

.project-section .section-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 50px;
}

.project-section .section-header h2 {
    color: #f8fbff;
    font-size: 3rem;
    letter-spacing: -0.04em;
}

.project-section .section-header p {
    color: rgba(238, 242, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.8;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 30px 0 20px;
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.project-card {
    background: rgba(11, 16, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 141, 255, 0.4);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.42);
}

.project-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    min-height: 100%;
}

.project-card-media {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.project-card-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 10, 22, 0.05) 0%, rgba(6, 10, 22, 0.3) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    display: block;
}

.project-card:hover .project-card-media img {
    transform: scale(1.12) rotate(0.2deg);
    filter: brightness(1.03);
}

.project-card-content {
    padding: 28px 28px 110px;
    position: relative;
    z-index: 1;
}

.project-card-meta {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.project-card h3 {
    font-size: 1.75rem;
    margin: 0 0 16px;
    color: #f7f7f9;
    line-height: 1.15;
}

.project-card p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245, 246, 248, 0.75);
}

.project-card p:last-child {
    margin-bottom: 0;
}

.project-card-hover {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 18px 22px;
    background: rgba(6, 11, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-card-hover {
    transform: translateY(0);
    opacity: 1;
}

.project-card-hover span {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.project-card-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(79, 141, 255, 0.16), transparent 80%);
}

@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card-media {
        min-height: 220px;
    }

    .project-card-hover {
        left: 18px;
        right: 18px;
    }

    /* On touch / small screens show the hover/action area by default so users can read content */
    .project-card-hover {
        transform: translateY(0) !important;
        opacity: 1 !important;
        position: relative !important;
        margin-top: 14px;
        bottom: auto;
        left: auto;
        right: auto;
        display: flex;
    }

    .project-card-content {
        padding: 20px 20px 24px !important;
    }
}

/* Force projects section visible on small screens where intersection observer or fixed navbar may hide it */
@media (max-width: 992px) {
    .project-section,
    .project-section .section-header,
    .project-grid {
        opacity: 1 !important;
        transform: none !important;
        -webkit-transform: none !important;
    }

    .reveal-section {
        scroll-margin-top: 140px;
    }

    .project-section {
        z-index: 5;
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .project-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Hizmetler Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.btn-details {
    display: inline-block;
    padding: 10px 25px;
    background: var(--main-red) !important;
    color: var(--main-white) !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--main-red);
    text-align: center;
    align-self: center;
}

.btn-details:hover {
    background: transparent;
    color: var(--main-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 45, 84, 0.2);
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.category-icon i {
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease;
}

.service-category-card h2 {
    font-size: 22px;
    color: var(--text-color);
    margin: 0 0 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 12px;
}

.service-group {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.service-group h3 {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
}

.service-group h3 i {
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-category-card:hover h3 i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.service-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-group ul li {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.service-group ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 14px;
    font-weight: bold;
}

.service-group ul li:last-child {
    margin-bottom: 0;
}

.service-category-card:hover {
    background: var(--light-bg);
}

.service-category-card:hover h3::after {
    width: 40px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-group ul li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 15px;
        padding: 25px 0;
    }

    .service-category-card {
        padding: 15px;
    }

    .service-group h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .service-group ul li {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .service-category-card {
        padding: 15px;
    }

    .service-group h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .service-group ul li {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.03)"/></svg>');
    opacity: 0.8;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-info {
    text-align: center;
}

.member-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.member-header .position {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .team-section .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .team-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .team-photo {
        height: 320px;
    }

    .team-info {
        padding: 20px 15px;
    }

    .team-info h4 {
        font-size: 16px;
    }

    .team-description {
        height: 100px;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 576px) {
    .team-section .section-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .team-photo {
        height: 280px;
    }

    .team-info h4 {
        font-size: 15px;
    }

    .team-description {
        font-size: 12px;
        height: 90px;
        -webkit-line-clamp: 4;
    }

    .profile-detail-btn {
        padding: 6px 15px;
        font-size: 11px;
    }
}

/* Neden Biz Bölümü - Lüks Granit / Lacivert Tema */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #07090b 0%, #0b1116 40%, #071527 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 30%, rgba(3, 42, 77, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(10, 20, 40, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.why-us-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(255,255,255,0.015)"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    pointer-events: none;
}

.why-us-section .container {
    position: relative;
    z-index: 2;
}

.why-us-section .section-header {
    margin-bottom: 60px;
}

.why-us-section .section-title {
    color: #f6f8fa;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #f6f8fa 0%, #dfeffb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-section .section-subtitle {
    color: rgba(230, 235, 240, 0.75);
    font-size: 1.05rem;
    font-weight: 400;
}

.why-us-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(3, 8, 15, 0.6);
    transition: transform 0.45s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.why-us-feature::before {
    content: '';
    position: absolute;
    top: -55%;
    right: -55%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(3, 42, 77, 0.18) 0%, transparent 45%);
    transition: all 0.45s ease;
    z-index: 0;
    mix-blend-mode: overlay;
}

.why-us-feature:hover {
    transform: translateY(-12px);
    border-color: rgba(3, 42, 77, 0.55);
    box-shadow: 0 28px 80px rgba(3, 42, 77, 0.45);
    background: linear-gradient(180deg, rgba(6,20,34,0.12) 0%, rgba(6,12,20,0.04) 100%);
}

.why-us-feature:hover::before {
    top: -20%;
    right: -20%;
}

.why-us-feature > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, #06263a 0%, #083b57 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    flex-shrink: 0;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    box-shadow: 0 10px 30px rgba(4, 34, 63, 0.45);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-us-feature:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 22px 60px rgba(3, 42, 77, 0.55);
}

.why-us-feature:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 1.6rem;
    color: #e7f6ff;
    transition: transform 0.35s ease, color 0.35s ease;
}

.why-us-feature:hover .feature-icon i {
    transform: scale(1.08);
    color: #cfeeff;
}

.feature-text h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #f7fafc;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.why-us-feature:hover .feature-text h4 {
    color: #98c8ff;
}

.feature-text p {
    color: rgba(230, 235, 240, 0.74);
    margin: 0;
    line-height: 1.7;
    font-size: 0.96rem;
    transition: color 0.3s ease;
}

.why-us-feature:hover .feature-text p {
    color: rgba(245, 250, 255, 0.9);
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    height: 100%;
}

.stat-card {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, rgba(46, 204, 113, 0.05) 100%);
    padding: 35px 25px;
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-15px);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 25px 70px rgba(52, 152, 219, 0.35);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(46, 204, 113, 0.08) 100%);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotateY(10deg);
    box-shadow: 0 15px 45px rgba(52, 152, 219, 0.5);
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
}

.stat-icon i {
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon i {
    transform: scale(1.2);
}

.stat-content h3 {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card:hover .stat-content p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }

    .why-us-section .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .why-us-feature {
        padding: 20px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-right: 15px;
        min-width: 60px;
    }

    .feature-icon i {
        font-size: 1.4rem;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
        margin-top: 40px;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .stat-content h3 {
        font-size: 1.8rem;
    }
}

/* Misyon ve Vizyon Bölümü */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mission-box,
.vision-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.mission-box:last-child,
.vision-box:last-child {
    margin-bottom: 0;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.mission-box h2,
.vision-box h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.mission-box h2::after,
.vision-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

/* Misyon Detay Bölümü */
.mission-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mission-paragraph {
    padding: 40px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.mission-paragraph:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.mission-paragraph h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    background: linear-gradient(45deg, #2C3E50, #4A4A4A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-paragraph h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.mission-paragraph:hover p {
    color: #2C3E50;
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-text {
        gap: 40px;
    }

    .mission-paragraph {
        padding: 30px 20px;
    }

    .mission-paragraph h3 {
        font-size: 1.8rem;
    }

    .mission-paragraph p {
        font-size: 1rem;
    }
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
    text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 40%;
    right: 25%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 30%;
    right: 35%;
    animation-delay: 5s;
}

.mission-text:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 30px rgba(41, 128, 185, 0.3);
    border-color: rgba(41, 128, 185, 0.3);
}

.mission-paragraph:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 4px rgba(41, 128, 185, 0.3);
    transform: translateY(-5px);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(41, 128, 185, 0.2);
    border-color: rgba(41, 128, 185, 0.3);
    background: rgba(17, 34, 64, 0.6);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        text-shadow: 0 0 20px rgba(41, 128, 185, 0.5);
    }

    100% {
        transform: translateY(0) rotate(0deg);
        text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
    }
}

@keyframes waterDrop {
    0% {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    40% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }

    60% {
        opacity: 0.7;
    }

    100% {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .mission-section {
        padding: 80px 0;
    }

    .mission-text {
        width: 90%;
        padding: 30px;
    }

    .mission-paragraph {
        font-size: 1.1rem;
        padding: 15px;
    }

    .floating-icon {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-text {
        padding: 25px;
        border-radius: 10px;
    }

    .mission-paragraph {
        font-size: 1rem;
        line-height: 1.7;
        padding: 12px;
    }

    .floating-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 0;
    }

    .mission-text {
        padding: 20px;
        border-radius: 8px;
    }

    .mission-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 10px;
    }

    .floating-icon {
        font-size: 16px;
    }
}

/* Ana içerik için üst boşluk */
main {
    padding-top: 100px;
    /* Navbar'ın yüksekliğine göre ayarlayın */
}

/* Servis detayları bölümü için stil */
.service-details {
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Header & Navigation */
    .navbar {
        padding: 1rem 0;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 30px;
        height: 2px;
        background-color: #333;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        transform: translateY(-8px);
    }

    .navbar-toggler-icon::after {
        transform: translateY(8px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 80px 20px 20px;
        transition: all 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-item {
        width: 100%;
        text-align: left;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        color: #333;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #1a73e8;
        background: rgba(26, 115, 232, 0.1);
        padding-left: 1.5rem;
    }

    /* Overlay when menu is open */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member {
        margin-bottom: 2rem;
    }
}

/* General Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .nav-link:hover {
        background: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* High DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .logo,
    .hero-title,
    .section-title {
        font-weight: 600;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: none;
        color: #000;
    }
}

/* Goals Section Styles */
.goals-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.goals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #2C3E50, transparent);
}

.goal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1);
    color: #3498DB;
}

.goal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C3E50;
    position: relative;
    padding-bottom: 10px;
}

.goal-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.goal-card:hover h3::after {
    width: 100px;
}

.goal-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.goal-card:hover p {
    color: #2C3E50;
}

@media (max-width: 991px) {
    .goal-card {
        margin-bottom: 30px;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #2C3E50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding-left: 25px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "";
    border-top: 4px solid #2C3E50;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
    }

    .dropdown-item {
        padding: 8px 15px;
        color: #2C3E50;
    }

    .dropdown-item:hover {
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        color: #fff;
    }
}

.development-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.development-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #2C3E50, transparent);
}

.development-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.development-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.development-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.development-text {
    max-width: 900px;
    margin: 0 auto;
}

.development-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 2.2;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .development-section {
        padding: 60px 0;
    }

    .development-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .development-text p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.8;
        letter-spacing: 0.3px;
    }
}

.hero-quote .first-quote {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s, fadeOut 1s ease forwards 4s;
}

.hero-quote .first-quote:last-of-type {
    margin-bottom: 1.5rem;
}

.hero-quote .first-quote .color-change {
    display: inline-block;
    color: #c7d9ff;
    animation: waveColorChange 2s ease-in-out forwards;
    animation-delay: calc(var(--delay) * 2);
}

.hero-quote .first-quote .blue-text {
    color: #c7d9ff;
    animation: none;
}

@keyframes waveColorChange {
    0% {
        color: var(--secondary-color);
    }

    50% {
        color: #ffffff;
    }

    100% {
        color: #ffffff;
    }
}

.hero-quote .second-quote {
    font-size: 3.5rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 4.5s;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-quote .second-quote .orange-text {
    display: inline-block;
    animation: colorToOrange 1s ease forwards 5s;
}

@keyframes colorToOrange {
    0% {
        color: #ffffff;
    }

    100% {
        color: var(--secondary-color);
    }
}

.test-contact p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 18px;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .service-category-card {
        padding: 30px 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .category-icon i {
        font-size: 24px;
    }

    .service-category-card h2 {
        font-size: 20px;
    }

    .test-contact {
        margin-top: 30px;
        padding: 20px;
    }

    .test-contact p {
        font-size: 16px;
    }
}

.service-group .contact-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--light-orange);
    border-radius: 8px;
    font-style: italic;
    color: var(--dark-orange);
    text-align: center;
    border: 1px solid var(--orange);
}

@media (max-width: 768px) {
    .service-group .contact-info {
        margin-top: 1rem;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: left;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 0.5rem;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }

    .hero-content p {
        font-size: 0.4rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
        padding: 0;
    }

    .hero-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: left;
        padding: 0 1rem;
    }

    .hero-quote .quote-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .hero-quote .first-quote {
        margin-bottom: 0.8rem;
    }

    .hero-quote .second-quote {
        font-size: 1.1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #fff 60%, rgba(16, 45, 84, 0.08) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), visibility 0.7s, transform 0.7s cubic-bezier(.4, 0, .2, 1);
    backdrop-filter: blur(6px);
}

#splash-screen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.08);
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(16, 45, 84, 0.10);
    padding: 48px 36px 36px 36px;
    position: relative;
    min-width: 320px;
    animation: splash-pop-in 0.8s cubic-bezier(.4, 0, .2, 1);
}

@keyframes splash-pop-in {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.splash-logo {
    height: 110px;
    width: auto;
    margin-bottom: 8px;
}

.splash-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(16, 45, 84, 0.12);
    border-top: 5px solid var(--secondary-color);
}

@keyframes splash-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.splash-loading-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    height: 32px;
}

.splash-loading-dots .dot {
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    animation: loading-bounce 1s infinite alternate;
}

.splash-loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.splash-loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loading-bounce {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}

.splash-desc {
    font-size: 1.1rem;
    color: #393939;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.splash-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.splash-fdalan {
    font-size: 1.1rem;
    font-weight: 500;
    color: #393939;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.color-fade {
    color: #fff;
    transition: color 1s;
}

.red-fade {
    color: #c7d9ff;
    animation: none;
}

/* Başlık Stilleri */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(26, 35, 126, 0.08), 0 1.5px 6px rgba(16, 45, 84, 0.08);
    padding: 28px 24px 20px 24px;
    width: calc(50% - 24px);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid #e3e3e3;
    margin-bottom: 24px;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(26, 35, 126, 0.13), 0 3px 12px rgba(16, 45, 84, 0.14);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-card .service-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    background: rgba(16, 45, 84, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);

    .service-card-title {
        font-size: 1.15rem;
        font-weight: 600;
        color: #1a237e;
        margin-bottom: 12px;
        font-family: 'Poppins', Arial, sans-serif;
        position: relative;
        padding-bottom: 8px;
    }

    .service-card-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--secondary-color);
        transition: all 0.3s ease;
    }

    .service-card:hover .service-card-title::after {
        width: 100%;
    }

    .service-card-desc {
        font-size: 1rem;
        color: #333;
        margin-bottom: 0;
        font-family: 'Poppins', Arial, sans-serif;
    }

    /* Responsive Düzenlemeler */
    @media (max-width: 992px) {
        .service-card {
            width: calc(50% - 24px);
        }
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 1.75rem;
            margin-bottom: 30px;
        }

        .service-card {
            width: 100%;
            min-height: 180px;
        }
    }

    footer {
        background: #1a237e;
        color: #fff;
        text-align: center;
        padding: 24px 0 12px 0;
        font-size: 1rem;
        margin-top: 40px;
        letter-spacing: 0.5px;
    }

    @media (max-width: 900px) {
        .services-list {
            flex-direction: column;
            align-items: center;
        }

        .service-card {
            width: 95%;
            min-width: unset;
        }
    }

    /* Navbar Custom */
    .navbar-custom {
        width: 100%;
        background: #fff;
        border-bottom: 1.5px solid #e3e3e3;
        box-shadow: 0 2px 8px rgba(26, 35, 126, 0.04);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .navbar-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        height: 64px;
    }

    .navbar-logo-img {
        height: 183px;
        width: auto;
        vertical-align: middle;
        object-fit: contain;
        max-width: 220px;
    }

    .navbar-links {
        list-style: none;
        display: flex;
        gap: 28px;
        margin: 0;
        padding: 0;
    }

    .navbar-links li a {
        color: #1a237e;
        font-weight: 500;
        font-size: 1.08rem;
        text-decoration: none;
        transition: color 0.2s;
        font-family: 'Poppins', Arial, sans-serif;
    }

    .navbar-links li a:hover {
        color: var(--secondary-color);
    }

    /* Başlık arka plan şerit efekti */
    .highlight-bg {
        display: inline-block;
        position: relative;
        padding: 0 24px;
        z-index: 1;
    }

    .highlight-bg::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 8px;
        height: 22px;
        background: linear-gradient(90deg, var(--secondary-color) 60%, #fff 100%);
        opacity: 0.18;
        border-radius: 8px;
        z-index: -1;
    }

    /* Fade-in efektleri */
    .fade-in,
    .fade-in-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
    }

    .fade-in.show {
        opacity: 1;
        transform: none;
    }

    .fade-in-up.show {
        opacity: 1;
        transform: none;
    }

    @media (max-width: 700px) {
        .navbar-container {
            flex-direction: column;
            height: auto;
            padding: 8px 8px 0 8px;
        }

        .navbar-logo-img {
            height: 80px;
        }

        .navbar-links {
            gap: 16px;
            font-size: 0.98rem;
        }

        .highlight-bg {
            font-size: 1.3rem;
            padding: 0 8px;
        }
    }

    /* Profil Butonu Stilleri */
    .profile-btn {
        background: linear-gradient(90deg, #1a237e, var(--secondary-color));
        color: #fff;
        border: none;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        margin-top: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 200px;
    }

    .profile-btn:hover {
        background: linear-gradient(90deg, var(--secondary-color), #1a237e);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    /* Modal Stilleri */
    .modal-content {
        border-radius: 15px;
        overflow: hidden;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .modal-header {
        background: linear-gradient(90deg, #1a237e, var(--secondary-color));
        color: #fff;
        border-bottom: none;
        padding: 20px 25px;
    }

    .modal-title {
        font-weight: 600;
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 25px;
    }

    .profile-content {
        font-size: 1rem;
        line-height: 1.7;
        color: #333;
    }

    .profile-content p {
        margin-bottom: 15px;
    }

    .btn-close {
        background-color: #fff;
        opacity: 0.8;
    }

    .btn-close:hover {
        opacity: 1;
    }

    /* Responsive Düzenlemeler */
    @media (max-width: 768px) {
        .profile-btn {
            font-size: 0.85rem;
            padding: 7px 14px;
            max-width: 180px;
        }

        .modal-title {
            font-size: 1.2rem;
        }

        .modal-body {
            padding: 20px;
        }

        .profile-content {
            font-size: 0.95rem;
            line-height: 1.6;
        }
    }

    @media (max-width: 576px) {
        .modal-dialog {
            margin: 0.5rem;
        }

        .modal-header {
            padding: 15px 20px;
        }

        .modal-body {
            padding: 15px;
        }

        .profile-content {
            font-size: 0.9rem;
        }

        .profile-btn {
            font-size: 0.8rem;
            padding: 6px 12px;
            max-width: 160px;
        }
    }


    /* Ekibimiz Bölümü - Kırmızı Beyaz Tema */
    .team-section {
        padding: 80px 0;
        background: #fff;
        position: relative;
    }

    .team-section .section-title {
        font-size: 28px;
        font-weight: 700;
        color: var(--main-red);
        margin-bottom: 50px;
        text-align: center;
        letter-spacing: 1px;
    }

    .team-card {
        background: #fff;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(16, 45, 84, 0.1);
        transition: all 0.3s ease;
        height: 100%;
        overflow: hidden;
        border: 2px solid #f0f0f0;
    }

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(16, 45, 84, 0.18);
        border-color: var(--main-red);
    }

    .team-photo {
        width: 100%;
        height: 300px;
        overflow: hidden;
        position: relative;
        border-radius: 50%;
        border: 5px solid #fff;
        box-shadow:
            0 0 0 3px var(--main-red),
            0 8px 25px rgba(16, 45, 84, 0.25),
            0 0 30px rgba(16, 45, 84, 0.12),
            inset 0 0 20px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg, #fff, #f4f7fb);
    }

    .team-photo::before {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-radius: 50%;

        background: linear-gradient(45deg,
            var(--main-red) 0%,
            rgba(16, 45, 84, 0.6) 25%,
            var(--main-red) 50%,
            rgba(29, 63, 111, 0.6) 75%,
            .team-card:hover .team-photo {
                transform: translateY(-5px) scale(1.05);
                box-shadow: 0 0 0 4px var(--main-red),
                0 15px 40px rgba(16, 45, 84, 0.38),
                0 0 50px rgba(16, 45, 84, 0.18),
                opacity: 1;
                animation-play-state: running;
            }

            .team-photo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
                transition: all 0.4s ease;
                border-radius: 50%;
                filter: brightness(1.05) contrast(1.1);
            }

            .team-card:hover .team-photo img {
                transform: scale(1.1);
                filter: brightness(1.1) contrast(1.15) saturate(1.1);
            }

            .team-info {
                padding: 25px 20px;
                text-align: center;
                background: #fff;
                transition: all 0.3s ease;
            }

            .team-card:hover .team-info {
                background: #fff;
            }

            .team-info h4 {
                font-size: 18px;
                font-weight: 600;
                color: #333;
                margin-bottom: 8px;
                line-height: 1.3;
                transition: all 0.3s ease;
            }

            .team-card:hover .team-info h4 {
                color: var(--main-red);
            }

            .team-position {
                font-size: 14px;
                color: var(--main-red);
                font-weight: 500;
                margin-bottom: 15px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .team-description {
                font-size: 13px;
                color: #666;
                line-height: 1.5;
                margin-bottom: 20px;
                text-align: justify;
                height: 120px;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 6;
                -webkit-box-orient: vertical;
                transition: all 0.3s ease;
            }

            .team-card:hover .team-description {
                color: #555;
            }

            .profile-detail-btn {
                background: var(--main-red);
                color: white;
                border: 2px solid var(--main-red);
                padding: 12px 30px;
                font-size: 13px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                border-radius: 25px;
                transition: all 0.4s ease;
                cursor: pointer;
                position: relative;
                overflow: hidden;
                box-shadow: 0 3px 10px rgba(16, 45, 84, 0.2);
            }

            .profile-detail-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                transition: left 0.5s ease;
            }

            .profile-detail-btn:hover::before {
                left: 100%;
            }

            .profile-detail-btn:hover {
                background: white;
                color: var(--main-red);
                border-color: var(--main-red);
                transform: translateY(-3px) scale(1.05);
                box-shadow: 0 8px 25px rgba(16, 45, 84, 0.4);

                .team-section .col-lg-3 {
                    flex: 0 0 23%;
                    max-width: 280px;
                }

                /* Responsive Düzenlemeler */
                @media (max-width: 1200px) {
                    .team-section .col-lg-3 {
                        flex: 0 0 45%;
                        max-width: 300px;
                    }

                    .team-section .row {
                        gap: 15px;
                    }
                }

                @media (max-width: 768px) {
                    .team-section {
                        padding: 60px 0;
                    }

                    .team-section .section-title {
                        font-size: 24px;
                        margin-bottom: 40px;
                    }

                    .team-section .col-lg-3 {
                        flex: 0 0 100%;
                        max-width: 100%;
                        margin-bottom: 20px;
                    }

                    .team-photo {
                        height: 320px;
                    }

                    .team-info {
                        padding: 20px 15px;
                    }

                    .team-info h4 {
                        font-size: 16px;
                    }

                    .team-description {
                        height: 100px;
                        -webkit-line-clamp: 5;
                    }
                }

                @media (max-width: 576px) {
                    .team-section .section-title {
                        font-size: 20px;
                        line-height: 1.3;
                    }

                    .team-photo {
                        height: 280px;
                    }

                    .team-info h4 {
                        font-size: 15px;
                    }

                    .team-description {
                        font-size: 12px;
                        height: 90px;
                        -webkit-line-clamp: 4;
                    }

                    .profile-detail-btn {
                        padding: 6px 15px;
                        font-size: 11px;
                    }

                    .team-photo img.abdurrahman-photo-offset {
                        object-position: center 30%;
                    }
                }

                /*
 Profil Modal Stilleri */
                .profile-modal {
                    border-radius: 15px;
                    border: none;
                    box-shadow: 0 15px 50px rgba(16, 45, 84, 0.2);
                }

                .profile-modal-header {
                    background: linear-gradient(135deg, var(--main-red), var(--secondary-color));
                    padding: 20px 30px;
                }

                .profile-modal-title {
                    font-size: 20px;
                    font-weight: 700;
                    margin: 0;
                }

                .profile-modal-close {
                    background: rgba(255, 255, 255, 0.2);
                    border: 2px solid rgba(255, 255, 255, 0.3);
                    color: white;
                    font-size: 20px;
                    opacity: 1;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                    position: relative;
                }

                .profile-modal-close::before {
                    content: '×';
                    font-size: 24px;
                    font-weight: bold;
                    line-height: 1;
                }

                .profile-modal-close:hover {
                    background: rgba(255, 255, 255, 0.3);
                    border-color: rgba(255, 255, 255, 0.5);
                    color: white;
                    transform: scale(1.1) rotate(90deg);
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                }

                .profile-modal-close:focus {
                    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
                    outline: none;
                }

                .profile-modal-body {
                    padding: 0;
                    background: #fff;
                    border-radius: 0 0 15px 15px;
                }

                .profile-modal-content {
                    display: flex;
                    min-height: 500px;
                }

                .profile-modal-left {
                    flex: 0 0 300px;
                    background: #f8f9fa;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    border-right: 3px solid var(--main-red);
                }

                .profile-modal-photo {
                    width: 200px;
                    height: 250px;
                    border-radius: 50%;
                    overflow: hidden;
                    border: 5px solid var(--main-red);
                    box-shadow: 0 8px 25px rgba(16, 45, 84, 0.25);
                    transform: scale(1.32);
                    transform-origin: center 67%;
                }

                .team-card:hover .team-photo img.abdurrahman-photo-offset {
                    transform: scale(1.42);
                }

                .profile-modal-photo img.abdurrahman-photo-offset {
                    object-position: center 22%;
                    transform: scale(1.28);
                    transform-origin: center 22%;
                }

                .profile-modal-info {
                    text-align: center;
                    width: 100%;
                }

                .profile-modal-info h3 {
                    font-size: 22px;
                    font-weight: 700;
                    color: var(--main-red);
                    margin-bottom: 10px;
                    line-height: 1.2;
                }

                .profile-modal-position {
                    font-size: 16px;
                    color: #666;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    margin-bottom: 25px;
                }

                .profile-modal-details {
                    text-align: left;
                }

                .detail-item {
                    display: flex;
                    align-items: center;
                    margin-bottom: 15px;
                    padding: 10px;
                    background: white;
                    border-radius: 8px;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                }

                .detail-item i {
                    color: var(--main-red);
                    font-size: 18px;
                    margin-right: 12px;
                    width: 20px;
                }

                .detail-item span {
                    font-size: 14px;
                    color: #333;
                    font-weight: 500;
                }

                .profile-modal-right {
                    flex: 1;
                    padding: 30px;
                    background: white;
                }

                .profile-modal-bio h4,
                .profile-modal-expertise h4 {
                    color: var(--main-red);
                    font-size: 20px;
                    font-weight: 700;
                    margin-bottom: 20px;
                    border-bottom: 2px solid var(--main-red);
                    padding-bottom: 10px;
                }

                .profile-modal-bio p {
                    color: #555;
                    line-height: 1.7;
                    font-size: 15px;
                    margin-bottom: 20px;
                    text-align: justify;
                }

                .profile-modal-expertise {
                    margin-top: 30px;
                }

                .expertise-tags {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;
                }

                .expertise-tag {
                    background: var(--main-red);
                    color: white;
                    padding: 8px 15px;
                    border-radius: 20px;
                    font-size: 13px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    transition: all 0.3s ease;
                }

                .expertise-tag:hover {
                    background: var(--secondary-color);
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(16, 45, 84, 0.3);
                }

                .expertise-tag {
                    font-size: 12px;
                    padding: 6px 12px;
                }
            }

            @media (max-width: 576px) {
                .profile-modal-header {
                    padding: 15px 20px;
                }

                .profile-modal-title {
                    font-size: 18px;
                }

                .profile-modal-photo {
                    width: 120px;
                    height: 120px;
                }

                .profile-modal-info h3 {
                    font-size: 16px;
                }

                .detail-item {
                    padding: 8px;
                }

                .detail-item span {
                    font-size: 13px;
                }
            }

            /* İletişim Bölümü - Yeni Tasarım */
            .contact-section {
                padding: 80px 0;
                background: #fff;
            }

            .contact-section .section-title {
                font-size: 32px;
                font-weight: 700;
                color: var(--main-red);
                margin-bottom: 15px;
            }

            .contact-section .section-subtitle {
                font-size: 18px;
                color: #666;
                margin-bottom: 50px;
            }

            .contact-info-card {
                background: #fff;
                border: 2px solid #f0f0f0;
                border-radius: 15px;
                padding: 40px;
                box-shadow: 0 5px 20px rgba(16, 45, 84, 0.1);
                transition: all 0.3s ease;
                height: 100%;
            }

            .contact-info-card:hover {
                border-color: var(--main-red);
                box-shadow: 0 10px 30px rgba(16, 45, 84, 0.2);
                transform: translateY(-5px);
            }

            .contact-info-card h3 {
                font-size: 24px;
                font-weight: 700;
                color: var(--main-red);
                margin-bottom: 30px;
                text-align: center;
                border-bottom: 2px solid var(--main-red);
                padding-bottom: 15px;
            }

            .contact-item {
                display: flex;
                align-items: flex-start;
                margin-bottom: 25px;
                padding: 20px;
                background: #f8f9fa;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .contact-item:hover {
                background: #f0f0f0;
                transform: translateX(5px);
            }

            .contact-icon {
                flex: 0 0 50px;
                height: 50px;
                background: var(--main-red);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 20px;
            }

            .contact-icon i {
                font-size: 20px;
                color: white;
            }

            .contact-details h4 {
                font-size: 18px;
                font-weight: 600;
                color: var(--main-red);
                margin-bottom: 8px;
            }

            .contact-details p {
                font-size: 15px;
                color: #555;
                line-height: 1.6;
                margin: 0;
            }

            .contact-details a {
                color: var(--main-red);
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .contact-details a:hover {
                color: var(--secondary-color);
                text-decoration: underline;
            }

            .contact-map {
                background: #fff;
                border: 2px solid #f0f0f0;
                border-radius: 15px;
                padding: 40px;
                box-shadow: 0 5px 20px rgba(16, 45, 84, 0.1);
                transition: all 0.3s ease;
                height: 100%;
            }

            .contact-map:hover {
                border-color: var(--main-red);
                box-shadow: 0 10px 30px rgba(16, 45, 84, 0.2);
                transform: translateY(-5px);
            }

            .contact-map h3 {
                font-size: 24px;
                font-weight: 700;
                color: var(--main-red);
                margin-bottom: 30px;
                text-align: center;
                border-bottom: 2px solid var(--main-red);
                padding-bottom: 15px;
            }

            .map-container {
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                margin-bottom: 20px;
            }

            .map-container iframe {
                width: 100%;
                height: 400px;
                border: none;
            }

            .map-directions {
                text-align: center;
            }

            .directions-btn {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                background: var(--main-red);
                color: white;
                padding: 12px 25px;
                border-radius: 25px;
                text-decoration: none;
                font-weight: 600;
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                transition: all 0.3s ease;
                box-shadow: 0 3px 15px rgba(16, 45, 84, 0.3);
            }

            .directions-btn:hover {
                background: var(--secondary-color);
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(16, 45, 84, 0.4);
            }

            .directions-btn i {
                font-size: 16px;
            }

            /* İletişim Responsive Düzenlemeler */
            @media (max-width: 768px) {
                .contact-section {
                    padding: 60px 0;
                }

                .contact-info-card,
                .contact-map {
                    padding: 30px;
                    margin-bottom: 30px;
                }

                .contact-item {
                    padding: 15px;
                    margin-bottom: 20px;
                }

                .contact-icon {
                    flex: 0 0 40px;
                    height: 40px;
                    margin-right: 15px;
                }

                .contact-icon i {
                    font-size: 16px;
                }

                .contact-details h4 {
                    font-size: 16px;
                }

                .contact-details p {
                    font-size: 14px;
                }

                .map-container iframe {
                    height: 300px;
                }
            }

            @media (max-width: 576px) {

                .contact-info-card h3,
                .contact-map h3 {
                    font-size: 20px;
                }

                .contact-item {
                    flex-direction: column;
                    text-align: center;
                }

                .contact-icon {
                    margin: 0 auto 15px;
                }

                .directions-btn {
                    padding: 10px 20px;
                    font-size: 13px;
                }
            }

            /* Yen
i CTA Bölümü Stilleri */
            .cta-section {
                padding: 80px 0;
                background: linear-gradient(135deg, var(--main-red) 0%, var(--secondary-color) 100%);
                color: white;
                position: relative;
                overflow: hidden;
            }

            .cta-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
                opacity: 0.3;
                z-index: 1;
            }

            .cta-section .container {
                position: relative;
                z-index: 2;
            }

            .cta-title {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 1rem;
                color: white;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            }

            .cta-text {
                font-size: 1.2rem;
                margin-bottom: 0;
                opacity: 0.95;
                line-height: 1.6;
            }

            .btn-cta {
                background: white;
                color: var(--main-red);
                padding: 15px 30px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 1.1rem;
                transition: all 0.3s ease;
                border: 2px solid white;
                display: inline-flex;
                align-items: center;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }

            .btn-cta:hover {
                background: transparent;
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            }

            /* Yeni İletişim Bölümü Stilleri */
            .contact-section {
                padding: 100px 0;
                background: #f8f9fa;
                position: relative;
            }

            .contact-section .section-title {
                font-size: 2.5rem;
                font-weight: 700;
                color: var(--main-red);
                margin-bottom: 1rem;
            }

            .contact-section .section-subtitle {
                font-size: 1.2rem;
                color: #666;
                margin-bottom: 0;
            }

            .contact-info-wrapper,
            .contact-map-wrapper {
                background: white;
                padding: 40px;
                border-radius: 15px;
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
                height: 100%;
                transition: all 0.3s ease;
            }

            .contact-info-wrapper:hover,
            .contact-map-wrapper:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
            }

            .contact-info-title,
            .contact-map-title {
                font-size: 1.8rem;
                font-weight: 700;
                color: var(--main-red);
                margin-bottom: 2rem;
                text-align: center;
            }

            .contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 2rem;
                padding: 20px;
                background: #f8f9fa;
                border-radius: 10px;
                transition: all 0.3s ease;
                min-height: 80px;
            }

            .contact-item:hover {
                background: #e9ecef;
                transform: translateX(5px);
            }

            .contact-item:last-child {
                margin-bottom: 0;
            }

            .contact-icon {
                flex: 0 0 60px;
                height: 60px;
                background: var(--main-red);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 20px;
                transition: all 0.3s ease;
            }

            .contact-item:hover .contact-icon {
                background: var(--secondary-color);
                transform: scale(1.1);
            }

            .contact-icon i {
                font-size: 1.5rem;
                color: white;
            }

            .contact-details h4 {
                font-size: 1.2rem;
                font-weight: 600;
                color: var(--main-red);
                margin-bottom: 0.5rem;
            }

            .contact-details p {
                font-size: 1rem;
                color: #555;
                margin: 0;
                line-height: 1.6;
            }

            .contact-details a {
                color: var(--main-red);
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .contact-details a:hover {
                color: var(--secondary-color);
                text-decoration: underline;
            }

            .map-container {
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                margin-bottom: 1rem;
            }

            .directions-btn {
                display: inline-flex;
                align-items: center;
                background: var(--main-red);
                color: white;
                padding: 12px 25px;
                border-radius: 25px;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
                width: 100%;
                justify-content: center;
            }

            .directions-btn:hover {
                background: var(--secondary-color);
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 4px 15px rgba(16, 45, 84, 0.3);
            }

            /* Mobil Uyumluluk */
            @media (max-width: 992px) {
                .cta-title {
                    font-size: 2rem;
                }

                .cta-text {
                    font-size: 1.1rem;
                }

                .btn-cta {
                    margin-top: 1.5rem;
                    padding: 12px 25px;
                    font-size: 1rem;
                }

                .contact-item {
                    flex-direction: row;
                    align-items: center;
                    text-align: left;
                }

                .contact-icon {
                    flex: 0 0 55px;
                    height: 55px;
                    margin-right: 18px;
                }

                .contact-icon i {
                    font-size: 1.3rem;
                }
            }

            @media (max-width: 768px) {
                .cta-section {
                    padding: 60px 0;
                }

                .cta-title {
                    font-size: 1.8rem;
                    margin-bottom: 1.5rem;
                }

                .cta-text {
                    font-size: 1rem;
                    margin-bottom: 1.5rem;
                }

                .contact-section {
                    padding: 80px 0;
                }

                .contact-section .section-title {
                    font-size: 2rem;
                }

                .contact-info-wrapper,
                .contact-map-wrapper {
                    padding: 25px;
                    margin-bottom: 2rem;
                }

                .contact-info-title,
                .contact-map-title {
                    font-size: 1.4rem;
                    margin-bottom: 1.5rem;
                }

                .contact-item {
                    flex-direction: row;
                    align-items: center;
                    text-align: left;
                    padding: 18px;
                    margin-bottom: 1.2rem;
                    min-height: 70px;
                }

                .contact-icon {
                    flex: 0 0 50px;
                    height: 50px;
                    margin-right: 15px;
                }

                .contact-icon i {
                    font-size: 1.1rem;
                }

                .contact-details h4 {
                    font-size: 1rem;
                    margin-bottom: 0.3rem;
                }

                .contact-details p {
                    font-size: 0.85rem;
                    line-height: 1.4;
                }

                .directions-btn {
                    padding: 10px 20px;
                    font-size: 0.9rem;
                }
            }

            @media (max-width: 576px) {
                .cta-section {
                    padding: 50px 0;
                }

                .cta-title {
                    font-size: 1.6rem;
                }

                .cta-text {
                    font-size: 0.95rem;
                }

                .btn-cta {
                    padding: 10px 20px;
                    font-size: 0.9rem;
                }

                .contact-section {
                    padding: 60px 0;
                }

                .contact-section .section-title {
                    font-size: 1.8rem;
                }

                .contact-section .section-subtitle {
                    font-size: 1rem;
                }

                .contact-info-wrapper,
                .contact-map-wrapper {
                    padding: 20px;
                }

                .contact-info-title,
                .contact-map-title {
                    font-size: 1.2rem;
                    margin-bottom: 1.2rem;
                }

                .contact-item {
                    flex-direction: row;
                    align-items: center;
                    text-align: left;
                    padding: 15px;
                    margin-bottom: 1rem;
                    background: #f8f9fa;
                    border-radius: 8px;
                    min-height: 65px;
                }

                .contact-icon {
                    flex: 0 0 45px;
                    height: 45px;
                    margin-right: 12px;
                }

                .contact-icon i {
                    font-size: 1rem;
                }

                .contact-details h4 {
                    font-size: 0.95rem;
                    margin-bottom: 0.2rem;
                    font-weight: 600;
                }

                .contact-details p {
                    font-size: 0.8rem;
                    line-height: 1.3;
                    margin: 0;
                }

                .contact-details a {
                    font-size: 0.8rem;
                    font-weight: 500;
                }

                .map-container iframe {
                    height: 280px;
                    border-radius: 8px;
                }

                .directions-btn {
                    padding: 8px 16px;
                    font-size: 0.85rem;
                    border-radius: 20px;
                }
            }

            @media (max-width: 480px) {

                .contact-info-wrapper,
                .contact-map-wrapper {
                    padding: 18px;
                }

                .contact-item {
                    padding: 12px;
                    margin-bottom: 0.8rem;
                }

                .contact-icon {
                    flex: 0 0 40px;
                    height: 40px;
                    margin-right: 10px;
                }

                .contact-icon i {
                    font-size: 0.9rem;
                }

                .contact-details h4 {
                    font-size: 0.9rem;
                }

                .contact-details p {
                    font-size: 0.75rem;
                }

                .contact-details a {
                    font-size: 0.75rem;
                }

                .map-container iframe {
                    height: 250px;
                }

                .directions-btn {
                    padding: 6px 14px;
                    font-size: 0.8rem;
                }
            }

            /* Animasyonlar */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .contact-item {
                animation: fadeInUp 0.6s ease forwards;
            }

            .contact-item:nth-child(1) {
                animation-delay: 0.1s;
            }

            .contact-item:nth-child(2) {
                animation-delay: 0.2s;
            }

            .contact-item:nth-child(3) {
                animation-delay: 0.3s;
            }

            .contact-item:nth-child(4) {
                animation-delay: 0.4s;
            }

            /* 
Yeni Avantajlar Bölümü Stilleri */
            .why-us-advantages {
                padding: 20px 0;
            }

            .advantage-card {
                display: flex;
                align-items: flex-start;
                background: white;
                padding: 25px;
                border-radius: 15px;
                margin-bottom: 20px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
                border-left: 4px solid var(--main-red);
            }

            .advantage-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
                border-left-color: var(--secondary-color);
            }

            .advantage-card:last-child {
                margin-bottom: 0;
            }

            .advantage-icon {
                flex: 0 0 60px;
                height: 60px;
                background: linear-gradient(135deg, var(--main-red), var(--secondary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 20px;
                transition: all 0.3s ease;
            }

            .advantage-card:hover .advantage-icon {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 5px 15px rgba(16, 45, 84, 0.3);
            }

            .advantage-icon i {
                font-size: 1.5rem;
                color: white;
            }

            .advantage-content h4 {
                font-size: 1.3rem;
                font-weight: 600;
                color: var(--main-red);
                margin-bottom: 10px;
                transition: color 0.3s ease;
            }

            .advantage-card:hover .advantage-content h4 {
                color: var(--secondary-color);
            }

            .advantage-content p {
                font-size: 1rem;
                color: #555;
                margin: 0;
                line-height: 1.6;
            }

            /* Mobil Uyumluluk */
            @media (max-width: 768px) {
                .advantage-card {
                    padding: 20px;
                    margin-bottom: 15px;
                }

                .advantage-icon {
                    flex: 0 0 50px;
                    height: 50px;
                    margin-right: 15px;
                }

                .advantage-icon i {
                    font-size: 1.2rem;
                }

                .advantage-content h4 {
                    font-size: 1.1rem;
                }

                .advantage-content p {
                    font-size: 0.9rem;
                }
            }

            @media (max-width: 576px) {
                .advantage-card {
                    flex-direction: column;
                    text-align: center;
                    padding: 20px 15px;
                }

                .advantage-icon {
                    margin: 0 auto 15px auto;
                }

                .advantage-content h4 {
                    font-size: 1rem;
                    margin-bottom: 8px;
                }

                .advantage-content p {
                    font-size: 0.85rem;
                }
            }

            /* Animasyonlar */
            .advantage-card {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.6s ease forwards;
            }

            .advantage-card:nth-child(1) {
                animation-delay: 0.1s;
            }

            .advantage-card:nth-child(2) {
                animation-delay: 0.2s;
            }

            .advantage-card:nth-child(3) {
                animation-delay: 0.3s;
            }

            .advantage-card:nth-child(4) {
                animation-delay: 0.4s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Yeni 
Footer Stilleri - Esenler Yapı */
            .footer {
                background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
                color: #ecf0f1;
                padding: 80px 0 0;
                position: relative;
                margin-top: 0;
            }

            .footer::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 5px;
                background: linear-gradient(90deg, var(--main-red), var(--secondary-color));
            }

            .footer-logo {
                text-align: center;
                margin-bottom: 20px;
            }

            .footer-logo-img {
                height: 60px;
                width: auto;
                filter: brightness(0) invert(1);
            }

            .footer-info h3 {
                font-size: 24px;
                margin-bottom: 15px;
                color: #ecf0f1;
                font-weight: 600;
                text-align: center;
            }

            .footer-info p {
                color: #bdc3c7;
                line-height: 1.6;
                font-size: 15px;
                text-align: center;
                margin-bottom: 15px;
            }

            .footer-links h4,
            .footer-services h4,
            .footer-contact h4 {
                font-size: 18px;
                margin-bottom: 20px;
                color: #ecf0f1;
                font-weight: 600;
            }

            .footer-links ul,
            .footer-services ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-links ul li,
            .footer-services ul li {
                margin-bottom: 12px;
            }

            .footer-links ul li a,
            .footer-services ul li a {
                color: #bdc3c7;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 15px;
                display: inline-block;
            }

            .footer-links ul li a:hover,
            .footer-services ul li a:hover {
                color: #ecf0f1;
                transform: translateX(5px);
                text-decoration: underline;
            }

            .footer-contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 15px;
                color: #bdc3c7;
                font-size: 15px;
            }

            .footer-contact-item i {
                color: var(--main-red);
                margin-right: 10px;
                width: 20px;
                text-align: center;
            }

            .footer-contact-item:hover {
                color: #ecf0f1;
            }

            .footer-bottom {
                text-align: center;
                padding: 30px 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 40px;
            }

            .footer-bottom p {
                margin: 0;
                color: #95a5a6;
                font-size: 14px;
            }

            .footer-social {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 15px;
            }

            .social-link {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.1);
                color: #bdc3c7;
                border-radius: 50%;
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .social-link:hover {
                background: var(--main-red);
                color: white;
                transform: translateY(-3px);
            }

            /* Hizmetler Bölümü Ortalama ve Özelleştirme */
            .services-section {
                padding: 100px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            }

            .services-section .section-header {
                text-align: center;
                margin-bottom: 60px;
            }

            .services-section .section-header h2 {
                font-size: 2.5rem;
                font-weight: 700;
                color: var(--main-red);
                margin-bottom: 1rem;
            }

            .services-section .section-header p {
                font-size: 1.2rem;
                color: #666;
            }

            .services-grid {
                gap: 30px;
            }

            .service-category-card {
                background: white;
                padding: 30px 25px;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                text-align: center;
                transition: all 0.3s ease;
                height: auto;
                max-height: 500px;
                border: 2px solid transparent;
                position: relative;
                overflow: hidden;
            }

            .service-category-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 5px;
                background: linear-gradient(90deg, var(--main-red), var(--secondary-color));
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
            }

            .service-category-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
                border-color: var(--main-red);
            }

            .service-category-card:hover::before {
                transform: scaleX(1);
            }

            .category-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, var(--main-red), var(--secondary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 25px auto;
                transition: all 0.3s ease;
            }

            .service-category-card:hover .category-icon {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 10px 25px rgba(16, 45, 84, 0.3);
            }

            .category-icon i {
                font-size: 2rem;
                color: white;
            }

            .service-category-card h2 {
                font-size: 1.8rem;
                font-weight: 600;
                color: var(--main-red);
                margin-bottom: 25px;
            }

            .service-list {
                text-align: left;
                margin-bottom: 30px;
            }

            .service-group {
                margin-bottom: 15px;
                padding: 12px 15px;
                background: #f8f9fa;
                border-radius: 8px;
                border-left: 3px solid var(--main-red);
                transition: all 0.3s ease;
            }

            .service-group:hover {
                background: #e9ecef;
                transform: translateX(5px);
            }

            .service-group h3 {
                font-size: 1rem;
                font-weight: 500;
                color: #333;
                margin: 0;
            }

            .btn-details {
                background: var(--main-red);
                color: white;
                padding: 12px 25px;
                border-radius: 25px;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
                display: inline-block;
            }

            .btn-details:hover {
                background: var(--secondary-color);
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(16, 45, 84, 0.3);
            }

            /* Mobil Uyumluluk */
            @media (max-width: 768px) {
                .footer {
                    padding: 60px 0 0;
                }

                .footer-info,
                .footer-links,
                .footer-services,
                .footer-contact {
                    margin-bottom: 40px;
                    text-align: center;
                }

                .footer-info h3 {
                    font-size: 20px;
                }

                .footer-links h4,
                .footer-services h4,
                .footer-contact h4 {
                    font-size: 16px;
                }

                .footer-social {
                    justify-content: center;
                    margin-top: 20px;
                }

                .services-section {
                    padding: 80px 0;
                }

                .services-section .section-header h2 {
                    font-size: 2rem;
                }

                .service-category-card {
                    padding: 30px 25px;
                    margin-bottom: 30px;
                }

                .category-icon {
                    width: 60px;
                    height: 60px;
                }

                .category-icon i {
                    font-size: 1.5rem;
                }

                .service-category-card h2 {
                    font-size: 1.5rem;
                }
            }

            @media (max-width: 576px) {
                .footer-bottom {
                    margin-top: 40px;
                }

                .footer-bottom p {
                    font-size: 12px;
                }

                .footer-contact-item {
                    justify-content: center;
                    text-align: center;
                }

                .services-section .section-header h2 {
                    font-size: 1.8rem;
                }

                .service-category-card {
                    padding: 25px 20px;
                }
            }

            /*
 Yeni Footer Stilleri - Esenler Yapı İçerikleri */
            .footer-logo {
                text-align: center;
                margin-bottom: 20px;
            }

            .footer-logo-img {
                height: 60px;
                width: auto;
                filter: brightness(0) invert(1);
                transition: all 0.3s ease;
            }

            .footer-logo-img:hover {
                transform: scale(1.05);
            }

            .footer-subtitle {
                font-size: 16px;
                color: var(--main-red) !important;
                font-weight: 600;
                text-align: center;
                margin-bottom: 15px;
            }

            .footer-features {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin-top: 20px;
            }

            .footer-feature {
                display: flex;
                align-items: center;
                justify-content: center;
                color: #bdc3c7;
                font-size: 14px;
            }

            .footer-feature i {
                color: var(--main-red);
                margin-right: 8px;
                font-size: 12px;
            }

            .footer-contact-item {
                display: flex;
                align-items: flex-start;
                margin-bottom: 20px;
                color: #bdc3c7;
                font-size: 14px;
            }

            .footer-contact-item i {
                color: var(--main-red);
                margin-right: 12px;
                width: 20px;
                text-align: center;
                margin-top: 2px;
                flex-shrink: 0;
            }

            .contact-text {
                flex: 1;
            }

            .contact-text strong {
                color: #ecf0f1;
                display: block;
                margin-bottom: 5px;
            }

            .contact-text a {
                color: #bdc3c7;
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .contact-text a:hover {
                color: #ecf0f1;
                text-decoration: underline;
            }

            .footer-bottom {
                text-align: left;
                padding: 30px 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 40px;
            }

            .footer-bottom p {
                margin: 0 0 10px 0;
                color: #95a5a6;
                font-size: 14px;
            }

            .footer-legal {
                margin-top: 10px;
            }

            .legal-link {
                color: #bdc3c7;
                text-decoration: none;
                font-size: 13px;
                transition: all 0.3s ease;
            }

            .legal-link:hover {
                color: #ecf0f1;
                text-decoration: underline;
            }

            .footer-social {
                text-align: center;
            }

            .social-title {
                color: #ecf0f1;
                font-size: 14px;
                margin-bottom: 15px;
                font-weight: 500;
            }

            .social-links {
                display: flex;
                justify-content: center;
                gap: 12px;
            }

            .social-link {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.1);
                color: #bdc3c7;
                border-radius: 50%;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 16px;
            }

            .social-link:hover {
                background: var(--main-red);
                color: white;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(16, 45, 84, 0.3);
            }

            /* Footer Mobil Uyumluluk */
            @media (max-width: 768px) {
                .footer {
                    padding: 60px 0 0;
                }

                .footer-info,
                .footer-links,
                .footer-services,
                .footer-contact {
                    margin-bottom: 40px;
                    text-align: center;
                }

                .footer-info h3 {
                    font-size: 20px;
                }

                .footer-links h4,
                .footer-services h4,
                .footer-contact h4 {
                    font-size: 16px;
                }

                .footer-features {
                    align-items: center;
                }

                .footer-contact-item {
                    justify-content: center;
                    text-align: center;
                    flex-direction: column;
                    align-items: center;
                }

                .footer-contact-item i {
                    margin-bottom: 5px;
                    margin-right: 0;
                }

                .footer-bottom {
                    text-align: center;
                }

                .social-links {
                    justify-content: center;
                    margin-top: 20px;
                }
            }

            @media (max-width: 576px) {
                .footer-bottom {
                    margin-top: 40px;
                }

                .footer-bottom p {
                    font-size: 12px;
                }

                .footer-logo-img {
                    height: 50px;
                }

                .footer-features {
                    gap: 8px;
                }

                .footer-feature {
                    font-size: 13px;
                }

                .social-link {
                    width: 35px;
                    height: 35px;
                    font-size: 14px;
                }
            }

            /* Footer Animasyonları */
            .footer-info,
            .footer-links,
            .footer-services,
            .footer-contact {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.6s ease forwards;
            }

            .footer-info {
                animation-delay: 0.1s;
            }

            .footer-links {
                animation-delay: 0.2s;
            }

            .footer-services {
                animation-delay: 0.3s;
            }

            .footer-contact {
                animation-delay: 0.4s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* A
vukat Telefon Numaraları Stilleri */
            .lawyer-phones {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .lawyer-phone {
                padding: 12px 15px;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 8px;
                border-left: 3px solid var(--main-red);
                transition: all 0.3s ease;
            }

            .lawyer-phone:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: translateX(5px);
            }

            .lawyer-phone strong {
                color: #ecf0f1;
                font-size: 14px;
                display: block;
                margin-bottom: 5px;
            }

            .lawyer-phone a {
                color: #bdc3c7;
                text-decoration: none;
                font-size: 15px;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .lawyer-phone a:hover {
                color: var(--main-red);
                text-decoration: underline;
            }

            /* Mobil Uyumluluk */
            @media (max-width: 768px) {
                .lawyer-phones {
                    gap: 12px;
                }

                .lawyer-phone {
                    padding: 10px 12px;
                    text-align: center;
                }

                .lawyer-phone strong {
                    font-size: 13px;
                }

                .lawyer-phone a {
                    font-size: 14px;
                }
            }

            @media (max-width: 576px) {
                .lawyer-phone {
                    padding: 8px 10px;
                }

                .lawyer-phone strong {
                    font-size: 12px;
                }

                .lawyer-phone a {
                    font-size: 13px;
                }
            }

            /* 
İletişim Bölümü Telefon Numaraları Stilleri */
            .contact-phones {
                display: flex;
                flex-direction: column;
                gap: 12px;
                margin-top: 10px;
            }

            .contact-phone-item {
                display: flex;
                flex-direction: column;
                padding: 12px 15px;
                background: rgba(16, 45, 84, 0.05);
                border-radius: 8px;
                border-left: 3px solid var(--main-red);
                transition: all 0.3s ease;
            }

            .contact-phone-item:hover {
                background: rgba(16, 45, 84, 0.1);
                transform: translateX(5px);
                box-shadow: 0 2px 8px rgba(16, 45, 84, 0.1);
            }

            .contact-phone-item strong {
                color: var(--main-red);
                font-size: 14px;
                font-weight: 600;
                margin-bottom: 5px;
                display: block;
            }

            .contact-phone-item a {
                color: #555;
                text-decoration: none;
                font-size: 15px;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .contact-phone-item a:hover {
                color: var(--main-red);
                text-decoration: underline;
            }

            /* Mobil Uyumluluk - İletişim Telefon Numaraları */
            @media (max-width: 768px) {
                .contact-phones {
                    gap: 10px;
                }

                .contact-phone-item {
                    padding: 10px 12px;
                    text-align: center;
                    align-items: center;
                }

                .contact-phone-item strong {
                    font-size: 13px;
                    text-align: center;
                }

                .contact-phone-item a {
                    font-size: 14px;
                    text-align: center;
                }
            }

            @media (max-width: 576px) {
                .contact-phone-item {
                    padding: 8px 10px;
                }

                .contact-phone-item strong {
                    font-size: 12px;
                }

                .contact-phone-item a {
                    font-size: 13px;
                }
            }

            /* İletişim Bölümü Genel Düzenlemeler */
            .contact-details h4 {
                font-size: 1.2rem;
                font-weight: 600;
                color: var(--main-red);
                margin-bottom: 15px;
            }

            /* Animasyonlar */
            .contact-phone-item {
                opacity: 0;
                transform: translateY(10px);
                animation: fadeInUp 0.4s ease forwards;
            }

            .contact-phone-item:nth-child(1) {
                animation-delay: 0.1s;
            }

            .contact-phone-item:nth-child(2) {
                animation-delay: 0.2s;
            }

            .contact-phone-item:nth-child(3) {
                animation-delay: 0.3s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /*
 Hizmetler Bölümü Kompakt Tasarım */
            .service-list {
                text-align: left;
                margin-bottom: 25px;
            }

            .service-group {
                margin-bottom: 8px;
                padding: 8px 12px;
                background: #f8f9fa;
                border-radius: 6px;
                border-left: 3px solid var(--main-red);
                transition: all 0.3s ease;
            }

            .service-group:hover {
                background: #e9ecef;
                transform: translateX(3px);
            }

            .service-group h3 {
                font-size: 0.9rem;
                font-weight: 500;
                color: #333;
                margin: 0;
                line-height: 1.3;
            }

            .service-category-card h2 {
                font-size: 1.6rem;
                font-weight: 600;
                color: var(--main-red);
                margin-bottom: 20px;
            }

            .category-icon {
                width: 70px;
                height: 70px;
                background: linear-gradient(135deg, var(--main-red), var(--secondary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px auto;
                transition: all 0.3s ease;
            }

            .category-icon i {
                font-size: 1.8rem;
                color: white;
            }

            .btn-details {
                background: var(--main-red);
                color: white;
                padding: 10px 20px;
                border-radius: 20px;
                text-decoration: none;
                font-weight: 500;
                font-size: 0.9rem;
                transition: all 0.3s ease;
                display: inline-block;
                margin-top: 10px;
            }

            .btn-details:hover {
                background: var(--secondary-color);
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(16, 45, 84, 0.3);
            }

            /* Mobil Uyumluluk - Kompakt Hizmetler */
            @media (max-width: 768px) {
                .service-category-card {
                    padding: 25px 20px;
                    margin-bottom: 25px;
                }

                .category-icon {
                    width: 60px;
                    height: 60px;
                    margin-bottom: 15px;
                }

                .category-icon i {
                    font-size: 1.5rem;
                }

                .service-category-card h2 {
                    font-size: 1.4rem;
                    margin-bottom: 15px;
                }

                .service-group {
                    padding: 6px 10px;
                    margin-bottom: 6px;
                }

                .service-group h3 {
                    font-size: 0.85rem;
                }

                .btn-details {
                    padding: 8px 16px;
                    font-size: 0.85rem;
                }
            }

            @media (max-width: 576px) {
                .service-category-card {
                    padding: 20px 15px;
                }

                .service-category-card h2 {
                    font-size: 1.3rem;
                }

                .service-group h3 {
                    font-size: 0.8rem;
                }
            }

            / * Yeni Hizmetler Bölümü - Tek Kart Tasarımı */ .service-section {
                margin-bottom: 30px;
                padding: 25px;
                background: #f8f9fa;
                border-radius: 12px;
                border-left: 4px solid var(--main-red);
                transition: all 0.3s ease;
            }

            .service-section:hover {
                background: #e9ecef;
                transform: translateX(5px);
                box-shadow: 0 5px 15px rgba(16, 45, 84, 0.1);
            }

            .service-subsection {
                background: #fff;
                border-left: 4px solid var(--secondary-color);
                margin-top: 20px;
            }

            .service-subsection:hover {
                background: #f8f9fa;
            }

            .service-section-header {
                display: flex;
                align-items: center;
                margin-bottom: 20px;
                padding-bottom: 15px;
                border-bottom: 2px solid #e0e0e0;
            }

            .service-section-header i {
                font-size: 1.5rem;
                color: var(--main-red);
                margin-right: 15px;
                width: 30px;
                text-align: center;
            }

            .service-section-header h3 {
                font-size: 1.4rem;
                font-weight: 600;
                color: var(--main-red);
                margin: 0;
            }

            .service-subsection .service-section-header i {
                color: var(--secondary-color);
            }

            .service-subsection .service-section-header h3 {
                color: var(--secondary-color);
                font-size: 1.2rem;
            }

            .service-list {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 10px;
                margin-bottom: 0;
            }

            .service-group h4 {
                font-size: 0.9rem;
                font-weight: 500;
                color: #333;
                margin: 0;
                line-height: 1.3;
            }

            .service-buttons {
                display: flex;
                gap: 15px;
                justify-content: center;
                margin-top: 30px;
                padding-top: 25px;
                border-top: 2px solid #e0e0e0;
            }

            .btn-secondary {
                background: #6c757d !important;
                border-color: #6c757d !important;
            }

            .btn-secondary:hover {
                background: #5a6268 !important;
                border-color: #545b62 !important;
            }

            /* Mobil Uyumluluk */
            @media (max-width: 768px) {
                .service-section {
                    padding: 20px;
                    margin-bottom: 20px;
                }

                .service-section-header {
                    flex-direction: column;
                    text-align: center;
                    margin-bottom: 15px;
                }

                .service-section-header i {
                    margin-right: 0;
                    margin-bottom: 10px;
                }

                .service-list {
                    grid-template-columns: 1fr;
                    gap: 8px;
                }

                .service-buttons {
                    flex-direction: column;
                    gap: 10px;
                }

                .btn-details {
                    width: 100%;
                    text-align: center;
                }
            }

            @media (max-width: 576px) {
                .service-section {
                    padding: 15px;
                }

                .service-section-header h3 {
                    font-size: 1.2rem;
                }

                .service-subsection .service-section-header h3 {
                    font-size: 1.1rem;
                }
            }

            /* 
Hover Efektli Hizmet Kartları */
            .service-card-hover {
                perspective: 1000px;
                height: 400px;
            }

            .service-card-inner {
                position: relative;
                width: 100%;
                height: 100%;
                text-align: center;
                transition: transform 0.6s;
                transform-style: preserve-3d;
                cursor: pointer;
            }

            .service-card-hover:hover .service-card-inner {
                transform: rotateY(180deg);
            }

            .service-card-front,
            .service-card-back {
                position: absolute;
                width: 100%;
                height: 100%;
                backface-visibility: hidden;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .service-card-front {
                background: white;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 30px;
                border: 2px solid transparent;
                transition: all 0.3s ease;
            }

            .service-card-front:hover {
                border-color: var(--main-red);
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

            .service-card-back {
                background: #f8f9fa;
                transform: rotateY(180deg);
                overflow: hidden;
            }

            .service-image {
                position: relative;
                width: 100%;
                height: 100%;
            }

            .service-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }

            .service-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(16, 45, 84, 0.9), rgba(163, 42, 54, 0.9));
                color: white;
                padding: 30px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                border-radius: 20px;
            }

            .service-overlay h4 {
                font-size: 1.5rem;
                font-weight: 600;
                margin-bottom: 20px;
                color: white;
            }

            .service-overlay ul {
                list-style: none;
                padding: 0;
                margin: 0 0 25px 0;
            }

            .service-overlay ul li {
                padding: 5px 0;
                font-size: 14px;
                color: rgba(255, 255, 255, 0.9);
                position: relative;
                padding-left: 15px;
            }

            .service-overlay ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: #fff;
                font-weight: bold;
            }

            .service-btn {
                background: white;
                color: var(--main-red);
                padding: 10px 25px;
                border-radius: 25px;
                text-decoration: none;
                font-weight: 600;
                transition: all 0.3s ease;
                border: 2px solid white;
            }

            .service-btn:hover {
                background: transparent;
                color: white;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
            }

            .category-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, var(--main-red), var(--secondary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;
                transition: all 0.3s ease;
            }

            .service-card-front:hover .category-icon {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 10px 25px rgba(16, 45, 84, 0.3);
            }

            .category-icon i {
                font-size: 2rem;
                color: white;
            }

            .service-card-front h3 {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--main-red);
                margin-bottom: 15px;
            }

            .service-card-front p {
                font-size: 1rem;
                color: #666;
                margin-bottom: 20px;
                line-height: 1.5;
            }

            .service-preview {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }

            .service-preview span {
                font-size: 0.9rem;
                color: #555;
                padding: 5px 0;
                border-bottom: 1px solid #f0f0f0;
            }

            .service-preview span:last-child {
                border-bottom: none;
            }

            /* Mobil Uyumluluk */
            @media (max-width: 768px) {
                .service-card-hover {
                    height: 350px;
                    margin-bottom: 20px;
                }

                .service-card-front {
                    padding: 25px;
                }

                .category-icon {
                    width: 60px;
                    height: 60px;
                }

                .category-icon i {
                    font-size: 1.5rem;
                }

                .service-card-front h3 {
                    font-size: 1.3rem;
                }

                .service-card-front p {
                    font-size: 0.9rem;
                }

                .service-overlay {
                    padding: 20px;
                }

                .service-overlay h4 {
                    font-size: 1.3rem;
                    margin-bottom: 15px;
                }

                .service-overlay ul li {
                    font-size: 13px;
                }
            }

            @media (max-width: 576px) {
                .service-card-hover {
                    height: 320px;
                }

                .service-card-front {
                    padding: 20px;
                }

                .service-preview span {
                    font-size: 0.8rem;
                }

                .service-btn {
                    padding: 8px 20px;
                    font-size: 0.9rem;
                }
            }

            /* Ç
alışma Alanlarımız Bölümü */
            .work-area-card {
                background: white;
                padding: 30px;
                border-radius: 15px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
                height: 100%;
                border: 2px solid transparent;
                position: relative;
                overflow: hidden;
            }

            .work-area-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(90deg, var(--main-red), var(--secondary-color));
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
            }

            .work-area-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
                border-color: var(--main-red);
            }

            .work-area-card:hover::before {
                transform: scaleX(1);
            }

            .work-area-icon {
                width: 70px;
                height: 70px;
                background: linear-gradient(135deg, var(--main-red), var(--secondary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;
                transition: all 0.3s ease;
            }

            .work-area-card:hover .work-area-icon {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 8px 20px rgba(16, 45, 84, 0.3);
            }

            .work-area-icon i {
                font-size: 1.8rem;
                color: white;
            }

            .work-area-card h3 {
                font-size: 1.4rem;
                font-weight: 600;
                color: var(--main-red);
                margin-bottom: 15px;
                transition: color 0.3s ease;
            }

            .work-area-card:hover h3 {
                color: var(--secondary-color);
            }

            .work-area-card p {
                font-size: 1rem;
                color: #666;
                margin-bottom: 20px;
                line-height: 1.6;
            }

            .work-area-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .work-area-list li {
                padding: 8px 0;
                color: #555;
                font-size: 0.9rem;
                position: relative;
                padding-left: 20px;
                transition: all 0.3s ease;
            }

            .work-area-list li::before {
                content: '→';
                position: absolute;
                left: 0;
                color: var(--main-red);
                font-weight: bold;
                transition: all 0.3s ease;
            }

            .work-area-card:hover .work-area-list li::before {
                color: var(--secondary-color);
                transform: translateX(3px);
            }

            .work-area-card:hover .work-area-list li {
                color: #333;
                padding-left: 25px;
            }

            /* Mobil Uyumluluk */
            @media (max-width: 768px) {
                .work-area-card {
                    padding: 25px;
                    margin-bottom: 20px;
                }

                .work-area-icon {
                    width: 60px;
                    height: 60px;
                }

                .work-area-icon i {
                    font-size: 1.5rem;
                }

                .work-area-card h3 {
                    font-size: 1.2rem;
                }

                .work-area-card p {
                    font-size: 0.9rem;
                }

                .work-area-list li {
                    font-size: 0.85rem;
                    padding: 6px 0;
                }
            }

            @media (max-width: 576px) {
                .work-area-card {
                    padding: 20px;
                }

                .work-area-icon {
                    width: 50px;
                    height: 50px;
                }

                .work-area-icon i {
                    font-size: 1.3rem;
                }

                .work-area-card h3 {
                    font-size: 1.1rem;
                }

                .work-area-card p {
                    font-size: 0.85rem;
                }

                .work-area-list li {
                    font-size: 0.8rem;
                }
            }

            /* Animasyonlar */
            .work-area-card {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.6s ease forwards;
            }

            .work-area-card:nth-child(1) {
                animation-delay: 0.1s;
            }

            .work-area-card:nth-child(2) {
                animation-delay: 0.2s;
            }

            .work-area-card:nth-child(3) {
                animation-delay: 0.3s;
            }

            .work-area-card:nth-child(4) {
                animation-delay: 0.4s;
            }

            .work-area-card:nth-child(5) {
                animation-delay: 0.5s;
            }

            .work-area-card:nth-child(6) {
                animation-delay: 0.6s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /*
 Çalışma Alanları Bölümü */
            .practice-areas-section {
                padding: 100px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                position: relative;
            }

            .practice-areas-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(45deg, rgba(16, 45, 84, 0.02) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(16, 45, 84, 0.02) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(16, 45, 84, 0.02) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(16, 45, 84, 0.02) 75%);
                background-size: 30px 30px;
                background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
                z-index: 0;
            }

            .practice-areas-section .container {
                position: relative;
                z-index: 1;
            }

            .practice-area-card {
                position: relative;
                height: 400px;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.4s ease;
                cursor: pointer;
            }

            .practice-area-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            }

            .practice-area-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                transition: all 0.4s ease;
                filter: brightness(0.7);
            }

            .practice-area-card:hover .practice-area-bg {
                transform: scale(1.1);
                filter: brightness(0.5);
            }

            .practice-area-content {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(16, 45, 84, 0.8) 0%, rgba(163, 42, 54, 0.9) 100%);
                padding: 30px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                color: white;
                opacity: 0;
                transition: all 0.4s ease;
            }

            .practice-area-card:hover .practice-area-content {
                opacity: 1;
            }

            .practice-area-icon {
                width: 80px;
                height: 80px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;
                transition: all 0.3s ease;
            }

            .practice-area-card:hover .practice-area-icon {
                background: rgba(255, 255, 255, 0.3);
                transform: scale(1.1) rotate(5deg);
            }

            .practice-area-icon i {
                font-size: 2rem;
                color: white;
            }

            .practice-area-content h3 {
                font-size: 1.8rem;
                font-weight: 600;
                margin-bottom: 15px;
                color: white;
            }

            .practice-area-content p {
                font-size: 1rem;
                margin-bottom: 20px;
                color: rgba(255, 255, 255, 0.9);
                line-height: 1.5;
            }

            .practice-area-content ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .practice-area-content ul li {
                padding: 5px 0;
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.8);
                position: relative;
                padding-left: 20px;
                transition: all 0.3s ease;
            }

            .practice-area-content ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: #fff;
                font-weight: bold;
                font-size: 1rem;
            }

            .practice-area-content ul li:hover {
                color: white;
                transform: translateX(5px);
            }

            /* Kart Başlık Overlay (Hover Öncesi) */
            .practice-area-card::after {
                content: attr(data-title);
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                color: white;
                padding: 40px 20px 20px;
                font-size: 1.5rem;
                font-weight: 600;
                text-align: center;
                transition: all 0.4s ease;
            }

            .practice-area-card:hover::after {
                opacity: 0;
            }

            /* Mobil Uyumluluk */
            @media (max-width: 768px) {
                .practice-areas-section {
                    padding: 80px 0;
                }

                .practice-area-card {
                    height: auto;
                    margin-bottom: 20px;
                    display: flex;
                    flex-direction: column;
                }

                .practice-area-bg {
                    position: relative;
                    height: 200px;
                    filter: brightness(0.8);
                    border-radius: 20px 20px 0 0;
                }

                .practice-area-content {
                    position: relative;
                    padding: 25px;
                    opacity: 1 !important;
                    background: linear-gradient(135deg, rgba(16, 45, 84, 0.9) 0%, rgba(163, 42, 54, 0.95) 100%);
                    border-radius: 0 0 20px 20px;
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                }

                .practice-area-icon {
                    width: 60px;
                    height: 60px;
                }

                .practice-area-icon i {
                    font-size: 1.5rem;
                }

                .practice-area-content h3 {
                    font-size: 1.5rem;
                    margin-bottom: 12px;
                }

                .practice-area-content p {
                    font-size: 0.9rem;
                    margin-bottom: 15px;
                }

                .practice-area-content ul li {
                    font-size: 0.8rem;
                    padding: 3px 0;
                }

                .practice-area-card::after {
                    display: none;
                }

                /* Mobilde hover efektlerini devre dışı bırak */
                .practice-area-card:hover {
                    transform: none !important;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
                }

                .practice-area-card:hover .practice-area-bg {
                    transform: none !important;
                    filter: brightness(0.8) !important;
                }

                .practice-area-card:hover .practice-area-content {
                    opacity: 1 !important;
                }
            }

            @media (max-width: 576px) {
                .practice-area-card {
                    height: 320px;
                }

                .practice-area-content {
                    padding: 20px;
                }

                .practice-area-content h3 {
                    font-size: 1.3rem;
                }

                .practice-area-content p {
                    font-size: 0.85rem;
                }
            }

            /* Animasyonlar */
            .practice-area-card {
                opacity: 0;
                transform: translateY(30px);
                animation: fadeInUp 0.6s ease forwards;
            }

            .practice-area-card:nth-child(1) {
                animation-delay: 0.1s;
            }

            .practice-area-card:nth-child(2) {
                animation-delay: 0.2s;
            }

            .practice-area-card:nth-child(3) {
                animation-delay: 0.3s;
            }

            .practice-area-card:nth-child(4) {
                animation-delay: 0.4s;
            }

            .practice-area-card:nth-child(5) {
                animation-delay: 0.5s;
            }

            .practice-area-card:nth-child(6) {
                animation-delay: 0.6s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Hizmetlerimiz Bölümü */
            .services-section {
                padding: 100px 0;
                background: #f8f9fa;
                position: relative;
            }

            .services-section .container {
                position: relative;
                z-index: 1;
            }

            .service-box {
                background: white;
                border-radius: 15px;
                padding: 40px 30px;
                text-align: center;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
                height: 100%;
                border: 1px solid #e9ecef;
                position: relative;
                overflow: hidden;
            }

            .service-box::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(90deg, var(--main-red), var(--secondary-color));
                transform: scaleX(0);
                transition: transform 0.3s ease;
            }

            .service-box:hover::before {
                transform: scaleX(1);
            }

            .service-box:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
                border-color: var(--main-red);
            }

            .service-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, var(--main-red), var(--secondary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 25px;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .service-icon::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                transform: scale(0);
                transition: transform 0.3s ease;
            }

            .service-box:hover .service-icon::before {
                transform: scale(1);
            }

            .service-icon i {
                font-size: 36px;
                color: white;
                z-index: 1;
                position: relative;
            }

            .service-box:hover .service-icon {
                transform: scale(1.1);
                box-shadow: 0 10px 25px rgba(16, 45, 84, 0.3);

                .service-box h3 {
                    font-size: 24px;
                    font-weight: 600;
                    color: #2c3e50;
                    margin-bottom: 20px;
                    transition: color 0.3s ease;
                }

                .service-box:hover h3 {
                    color: var(--main-red);
                }

                .service-box p {
                    font-size: 15px;
                    line-height: 1.7;
                    color: #6c757d;
                    margin-bottom: 25px;
                    text-align: left;
                }

                .service-details {
                    opacity: 0;
                    max-height: 0;
                    overflow: hidden;
                    transition: all 0.4s ease;
                    transform: translateY(20px);
                }

                .service-box:hover .service-details {
                    opacity: 1;
                    max-height: 200px;
                    transform: translateY(0);
                }

                .service-details ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    text-align: left;
                }

                .service-details ul li {
                    padding: 8px 0;
                    font-size: 14px;
                    color: #495057;
                    position: relative;
                    padding-left: 25px;
                    transition: all 0.2s ease;
                }

                .service-details ul li::before {
                    content: '✓';
                    position: absolute;
                    left: 0;
                    color: var(--main-red);
                    font-weight: bold;
                    font-size: 16px;
                }

                .service-details ul li:hover {
                    color: var(--main-red);
                    transform: translateX(5px);
                }

                /* Mobil Uyumluluk */
                @media (max-width: 768px) {
                    .services-section {
                        padding: 80px 0;
                    }

                    .service-box {
                        padding: 30px 20px;
                        margin-bottom: 30px;
                    }

                    .service-icon {
                        width: 60px;
                        height: 60px;
                        margin-bottom: 20px;
                    }

                    .service-icon i {
                        font-size: 28px;
                    }

                    .service-box h3 {
                        font-size: 20px;
                        margin-bottom: 15px;
                    }

                    .service-box p {
                        font-size: 14px;
                        margin-bottom: 20px;
                    }

                    .service-details ul li {
                        font-size: 13px;
                        padding: 6px 0 6px 25px;
                    }

                    /* Mobilde detaylar her zaman görünür */
                    .service-details {
                        opacity: 1;
                        max-height: none;
                        transform: translateY(0);
                    }
                }

                @media (max-width: 576px) {
                    .service-box {
                        padding: 25px 15px;
                    }

                    .service-box h3 {
                        font-size: 18px;
                    }

                    .service-box p {
                        font-size: 13px;
                    }
                }

                /* Animasyonlar */
                .service-box {
                    opacity: 0;
                    transform: translateY(30px);
                    animation: fadeInUp 0.6s ease forwards;
                }

                .service-box:nth-child(1) {
                    animation-delay: 0.1s;
                }

                .service-box:nth-child(2) {
                    animation-delay: 0.2s;
                }

                .service-box:nth-child(3) {
                    animation-delay: 0.3s;
                }

                .service-box:nth-child(4) {
                    animation-delay: 0.4s;
                }

                .service-box:nth-child(5) {
                    animation-delay: 0.5s;
                }

                .service-box:nth-child(6) {
                    animation-delay: 0.6s;
                }

                @keyframes fadeInUp {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                /* Hi
zmet Sayfaları Stilleri */
                .service-hero-section {
                    position: relative;
                    height: 60vh;
                    min-height: 400px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    margin-top: 80px;
                }

                .service-hero-bg {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    filter: brightness(0.4);
                }

                .service-hero-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(135deg, rgba(16, 45, 84, 0.8) 0%, rgba(163, 42, 54, 0.8) 100%);
                }

                .service-hero-content {
                    position: relative;
                    z-index: 2;
                    text-align: center;
                    color: white;
                    max-width: 800px;
                    padding: 0 20px;
                }

                .service-hero-icon {
                    width: 100px;
                    height: 100px;
                    background: rgba(255, 255, 255, 0.2);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto 30px;
                    backdrop-filter: blur(10px);
                }

                .service-hero-icon i {
                    font-size: 48px;
                    color: white;
                }

                .service-hero-title {
                    font-size: 3.5rem;
                    font-weight: 700;
                    margin-bottom: 20px;
                    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
                }

                .service-hero-subtitle {
                    font-size: 1.3rem;
                    font-weight: 400;
                    opacity: 0.9;
                    line-height: 1.6;
                    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
                }

                .service-content-section {
                    padding: 80px 0;
                    background: #f8f9fa;
                }

                .service-content {
                    background: white;
                    padding: 40px;
                    border-radius: 15px;
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                    margin-bottom: 30px;
                }

                .service-content h2 {
                    color: var(--main-red);
                    font-size: 2.5rem;
                    font-weight: 600;
                    margin-bottom: 20px;
                }

                .service-content .lead {
                    font-size: 1.2rem;
                    color: #6c757d;
                    line-height: 1.8;
                    margin-bottom: 40px;
                }

                .service-features {
                    margin-bottom: 50px;
                }

                .feature-item {
                    display: flex;
                    align-items: flex-start;
                    padding: 20px;
                    background: #f8f9fa;
                    border-radius: 10px;
                    height: 100%;
                    transition: all 0.3s ease;
                }

                .feature-item:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                }

                .feature-icon {
                    width: 60px;
                    height: 60px;
                    background: linear-gradient(135deg, var(--main-red), var(--secondary-color));
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 20px;
                    flex-shrink: 0;
                }

                .feature-icon i {
                    font-size: 24px;
                    color: white;
                }

                .feature-content h4 {
                    color: #2c3e50;
                    font-size: 1.3rem;
                    font-weight: 600;
                    margin-bottom: 10px;
                }

                /* Proje Detay Sayfası */
                .project-detail-page {
                    background: #0b1220;
                    color: #eef2ff;
                }

                .project-hero {
                    position: relative;
                    padding: 120px 0 80px;
                    background: #070b16;
                    overflow: hidden;
                }

                .project-hero-img {
                    position: absolute;
                    inset: 0;
                    background: url('../../proje1/Ekran görüntüsü 2026-07-18 021558.png') center/cover no-repeat;
                    opacity: 0.16;
                    filter: brightness(0.55);
                }

                .project-hero-overlay {
                    position: absolute;
                    inset: 0;
                    background: rgba(5, 12, 26, 0.7);
                }

                .project-hero-content {
                    position: relative;
                    z-index: 1;
                }

                .project-meta {
                    display: inline-block;
                    margin-bottom: 18px;
                    font-size: 0.95rem;
                    color: rgba(238, 242, 255, 0.72);
                    letter-spacing: 0.5px;
                }

                .project-hero h1 {
                    font-size: 3rem;
                    margin-bottom: 18px;
                    line-height: 1.05;
                }

                .project-intro {
                    max-width: 640px;
                    font-size: 1.05rem;
                    line-height: 1.8;
                    color: rgba(238, 242, 255, 0.82);
                }

                .project-hero-tags {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 12px;
                    margin-top: 24px;
                }

                .project-hero-tags span {
                    background: rgba(255, 255, 255, 0.08);
                    border: 1px solid rgba(255, 255, 255, 0.12);
                    padding: 10px 16px;
                    border-radius: 999px;
                    font-size: 0.95rem;
                    color: #eff4ff;
                }

                .project-details {
                    padding: 80px 0 120px;
                }

                .glass-card {
                    background: rgba(9, 16, 32, 0.88);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
                    padding: 32px;
                    border-radius: 28px;
                    backdrop-filter: blur(16px);
                }

                .glass-card h2 {
                    color: #ffffff;
                    margin-bottom: 22px;
                }

                .glass-card ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }

                .glass-card ul li {
                    margin-bottom: 14px;
                    color: rgba(238, 242, 255, 0.78);
                    line-height: 1.8;
                    position: relative;
                    padding-left: 24px;
                }

                .glass-card ul li::before {
                    content: '•';
                    position: absolute;
                    left: 0;
                    top: 0;
                    color: #7c9dff;
                }

                .project-gallery {
                    display: grid;
                    grid-template-columns: repeat(2, minmax(0, 1fr));
                    gap: 24px;
                    margin-top: 40px;
                }

                .project-gallery-item {
                    overflow: hidden;
                    border-radius: 24px;
                    border: 1px solid rgba(255, 255, 255, 0.08);
                    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
                }

                .project-gallery-item img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.6s ease;
                }

                .project-gallery-item:hover img {
                    transform: scale(1.05);
                }

                @media (max-width: 992px) {
                    .project-gallery {
                        grid-template-columns: 1fr;
                    }

                    .project-hero {
                        padding: 90px 0 60px;
                    }

                    .project-hero h1 {
                        font-size: 2.4rem;
                    }
                }

                @media (max-width: 576px) {
                    .project-hero-tags {
                        flex-direction: column;
                        gap: 10px;
                    }

                    .glass-card {
                        padding: 24px;
                    }
                }

                font-weight: 600;
                margin-bottom: 30px;
            }

            .accordion-button {
                background: #f8f9fa;
                color: #2c3e50;
                font-weight: 600;
                border: none;
                padding: 20px;
            }

            .accordion-button:not(.collapsed) {
                background: var(--main-red);
                color: white;
                box-shadow: none;
            }

            .accordion-button:focus {
                box-shadow: none;
                border: none;
            }

            .accordion-body {
                padding: 20px;
            }

            .accordion-body ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .accordion-body ul li {
                padding: 8px 0;
                color: #495057;
                position: relative;
                padding-left: 25px;
            }

            .accordion-body ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: var(--main-red);
                font-weight: bold;
            }

            .service-sidebar {
                position: sticky;
                top: 100px;
            }

            .contact-card {
                background: white;
                padding: 30px;
                border-radius: 15px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                margin-bottom: 30px;
                text-align: center;
            }

            .contact-card h4 {
                color: var(--main-red);
                font-size: 1.5rem;
                font-weight: 600;
                margin-bottom: 15px;
            }

            .contact-card p {
                color: #6c757d;
                margin-bottom: 25px;
            }

            .contact-info {
                margin-bottom: 25px;
            }

            .contact-item {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 15px;
                color: #495057;
            }

            .contact-item i {
                color: var(--main-red);
                margin-right: 10px;
                width: 20px;
            }

            .related-services {
                background: white;
                padding: 30px;
                border-radius: 15px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            }

            .related-services h4 {
                color: var(--main-red);
                font-size: 1.3rem;
                font-weight: 600;
                margin-bottom: 20px;
            }

            .related-services ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .related-services ul li {
                margin-bottom: 10px;
            }

            .related-services ul li a {
                color: #495057;
                text-decoration: none;
                padding: 10px 15px;
                display: block;
                border-radius: 8px;
                transition: all 0.3s ease;
            }

            .related-services ul li a:hover {
                background: var(--main-red);
                color: white;
                transform: translateX(5px);
            }

            /* Mobil Uyumluluk */
            @media (max-width: 768px) {
                .service-hero-section {
                    height: 50vh;
                    min-height: 350px;
                }

                .service-hero-title {
                    font-size: 2.5rem;
                }

                .service-hero-subtitle {
                    font-size: 1.1rem;
                }

                .service-hero-icon {
                    width: 80px;
                    height: 80px;
                    margin-bottom: 20px;
                }

                .service-hero-icon i {
                    font-size: 36px;
                }

                .service-content {
                    padding: 25px;
                }

                .service-content h2 {
                    font-size: 2rem;
                }

                .feature-item {
                    flex-direction: column;
                    text-align: center;
                }

                .feature-icon {
                    margin-right: 0;
                    margin-bottom: 15px;
                }

                .service-sidebar {
                    position: static;
                    margin-top: 30px;
                }
            }