:root {
    --primary-color: #FF6B00;
    --secondary-color: #FF8533;
    --text-color: #2C3E50;
    --light-bg: #FFF5EB;
    --hover-color: #FF944D;
    --heading-color: #1A1A1A;
    --light-orange: #FFE6CC;
    --dark-orange: #FF8C00;
    --orange: #FFA500;
    --main-red: #2c3e50;
    --main-white: #fff;
}

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: var(--main-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #342c2c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar .logo span {
    color: #000000;
}

.navbar .logo:hover {
    transform: translateY(-2px);
}

.navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}

.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: #000000 !important;
    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: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #000000 !important;
}

.nav-link.active::after {
    width: 100%;
    background: #000000;
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: transparent;
        position: relative;
        z-index: 1000;
    }

    .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;
    }
}

/* 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: #23253f;
    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: #08090e;
    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: 120px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: none;
}

/* 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(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
    }
}

.hero-text-overlay {
    animation: glow 3s infinite;
}

.btn-primary {
    background: linear-gradient(135deg, #2c3e50, #34495e) !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(44, 62, 80, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #34495e, #2c3e50) !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;
    }
}

/* İ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: linear-gradient(135deg, #2c3e50, #34495e) !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;
    }
}

/* Adımlarımız Bölümü */
.steps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #dfe1e8 0%, #ffffff 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: #473535;
    font-size: 18px;
    margin-top: 15px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(52, 44, 44, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #473535, #342c2c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 44, 44, 0.1);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #473535;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: #342c2c;
    transform: rotateY(180deg);
}

.step-icon i {
    font-size: 32px;
    color: #fff;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #342c2c;
    font-weight: 600;
}

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

.step-list li {
    padding: 8px 0;
    color: #473535;
    position: relative;
    padding-left: 25px;
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #473535;
    transition: all 0.3s ease;
}

.step-card:hover .step-list li::before {
    color: #342c2c;
    transform: translateX(5px);
}

.step-description {
    padding-top: 20px;
    border-top: 1px solid #dfe1e8;
}

.step-description p {
    color: #473535;
    font-size: 15px;
    margin: 0;
    font-style: italic;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .step-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .step-list li {
        padding-left: 20px;
    }
    
    .step-description p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--main-red), #a32a36);
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ecf0f1;
    font-weight: 600;
}

.footer-info p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 16px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ecf0f1;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links 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 {
    color: #ecf0f1;
    transform: translateX(5px);
    text-decoration: underline;
}

.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;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #473535;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-info,
    .footer-links,
    .footer-social {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-info h3 {
        font-size: 20px;
    }
    
    .footer-links h4,
    .footer-social h4 {
        font-size: 16px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        margin-top: 40px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* İ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;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.05)"/></svg>');
    opacity: 0.5;
}

/* 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(255, 102, 0, 0.2);
}

.service-category-card:hover .btn-details {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.service-category-card:hover .btn-details:hover {
    background: transparent;
    color: var(--secondary-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    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: 40px 0;
    }

    .team-member {
        padding: 20px;
    }

    .member-header h3 {
        font-size: 1.3rem;
    }
}

/* Neden Biz Bölümü */
.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.05)"/></svg>');
    opacity: 0.5;
}

.why-us-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-us-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::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;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 40px 0;
    }

    .why-us-feature {
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .stat-card {
        padding: 20px;
    }

    .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, #007bff, #00bfff);
}

.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, #007bff, #00bfff);
    border-radius: 3px;
}

.mission-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: center;
}

/* 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, #FF6B35, #FF8C61);
    transition: width 0.3s ease;
}

.mission-paragraph:hover h3::after {
    width: 100px;
}

.mission-paragraph p {
    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, #FF6B35, #FF8C61);
    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, #FF6B35, #FF8C61);
    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, #FF6B35, #FF8C61);
        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: #FF6B35;
}

.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: #007bff;
    animation: waveColorChange 2s ease-in-out forwards;
    animation-delay: calc(var(--delay) * 2);
}

.hero-quote .first-quote .blue-text {
    color: #007bff;
    animation: none;
}

@keyframes waveColorChange {
    0% {
        color: #007bff;
    }
    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: #FF8C00;
    }
}

/* Test Contact Section */
.test-contact {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.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%, #f8e6ea 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(139,29,39,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 #e7bfc5;
    border-top: 5px solid #8b1d27;
    border-radius: 50%;
    animation: splash-spin 1.1s linear infinite;
    margin-bottom: 8px;
}
@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: #8b1d27;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.7;
    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: #8b1d27;
    text-align: center;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.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: #fff;
  animation: fadeToRed 2s forwards;
}

@keyframes fadeToRed {
  0% {
    color: #fff;
  }
  100% {
    color: #c00;
  }
}

/* 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, #1a237e, #c62828);
    border-radius: 2px;
}

/* Servis Kartları Düzeni */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.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(198,40,40,0.07);
    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(198,40,40,0.12);
    border-color: #c62828;
    transform: translateY(-5px);
}

.service-card .service-icon {
    font-size: 2.2rem;
    color: #c62828;
    margin-bottom: 12px;
    background: rgba(198,40,40,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: #c62828;
    color: #fff;
    transform: rotateY(180deg);
}

.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: #c62828;
    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: 80px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: none;
}
.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: #c62828;
}

/* 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, #c62828 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: 36px;
  }
  .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, #c62828);
    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, #c62828, #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, #c62828);
    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(139, 29, 39, 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(139, 29, 39, 0.2);
    border-color: var(--main-red);
}

.team-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.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(139, 29, 39, 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(139, 29, 39, 0.4);
}

.profile-detail-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(139, 29, 39, 0.3);
}

/* 4'lü grid düzeni */
.team-section .row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.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: 200px;
    }
    
    .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: 180px;
    }
    
    .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;
    }
}/*
 Profil Modal Stilleri */
.profile-modal {
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 50px rgba(139, 29, 39, 0.2);
}

.profile-modal-header {
    background: linear-gradient(135deg, var(--main-red), #a32a36);
    color: white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    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: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--main-red);
    box-shadow: 0 8px 25px rgba(139, 29, 39, 0.3);
    margin-bottom: 25px;
}

.profile-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.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: #a32a36;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 29, 39, 0.3);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .profile-modal-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .profile-modal-left {
        flex: none;
        border-right: none;
        border-bottom: 3px solid var(--main-red);
        padding: 20px;
    }
    
    .profile-modal-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .profile-modal-info h3 {
        font-size: 18px;
    }
    
    .profile-modal-right {
        padding: 20px;
    }
    
    .profile-modal-bio h4,
    .profile-modal-expertise h4 {
        font-size: 18px;
    }
    
    .profile-modal-bio p {
        font-size: 14px;
    }
    
    .expertise-tags {
        gap: 8px;
    }
    
    .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(139, 29, 39, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--main-red);
    box-shadow: 0 10px 30px rgba(139, 29, 39, 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: #a32a36;
    text-decoration: underline;
}

.contact-map {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(139, 29, 39, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-map:hover {
    border-color: var(--main-red);
    box-shadow: 0 10px 30px rgba(139, 29, 39, 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(139, 29, 39, 0.3);
}

.directions-btn:hover {
    background: #a32a36;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 29, 39, 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;
    }
}
/* Yeni CTA Bölümü Stilleri */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 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: #2c3e50;
    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: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0;
}

.contact-info-wrapper,
.contact-map-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 5px solid #2c3e50;
}

.contact-info-wrapper:hover,
.contact-map-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
    border-left-color: #34495e;
}

.contact-info-title,
.contact-map-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 80px;
    border-left: 3px solid transparent;
}

.contact-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateX(10px);
    border-left-color: #2c3e50;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #34495e;
    text-decoration: underline;
}

.contact-details a:hover {
    color: #a32a36;
    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: #a32a36;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 29, 39, 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: #a32a36;
}

.advantage-card:last-child {
    margin-bottom: 0;
}

.advantage-icon {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-red), #a32a36);
    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(139, 29, 39, 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: #a32a36;
}

.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 - Eksen Hukuk */
.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, #2c3e50, #34495e);
}

.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: #ecf0f1;
    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: #2c3e50;
    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: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    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), #a32a36);
    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), #a32a36);
    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(139, 29, 39, 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: #a32a36;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 29, 39, 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;
    }
}