/* Font yüklemesini optimize et */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: fallback;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: all 0.5s ease-in-out;
}

.h-screen{
    height: 100vh;
}

@media (max-width: 992px) {
    .h-screen{
        height: auto;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 64px;
}

.navbar .container {
    height: 100%;
}

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

.logo {
    display: block;
    text-decoration: none;
    z-index: 2;
}

.logo-img {
    height: auto;
    width: 120px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 16px;
    margin-right: 12px;
}

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

.nav-links a {
    color: #023047;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover {
    color: #FFB703;
    transform: translateY(-1px);
}

.nav-links a.active {
    color: #FFB703;
}

.nav-links a.active::after, .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFB703;
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a::after {
    transform: scaleX(0);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #023047;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    text-decoration: none;
    color: #023047;
    transition: background-color 0.3s ease;
}

.lang-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-option.active {
    color: #FFB703;
    font-weight: 600;
}

.flag-icon {
    width: 20px;
    height: 15px;
    background-size: cover;
    border-radius: 2px;
}

.flag-tr {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%23E30A17"/><circle cx="425" cy="400" r="200" fill="%23ffffff"/><circle cx="475" cy="400" r="160" fill="%23E30A17"/><polygon points="583.334,400 764.235,458.779 738.235,400 764.235,341.221" fill="%23ffffff"/></svg>');
}

.flag-en {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><clipPath id="s"><path d="M0,0 v30 h60 v-30 z"/></clipPath><clipPath id="t"><path d="M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z"/></clipPath><g clip-path="url(%23s)"><path d="M0,0 v30 h60 v-30 z" fill="%23012169"/><path d="M0,0 L60,30 M60,0 L0,30" stroke="%23fff" stroke-width="6"/><path d="M0,0 L60,30 M60,0 L0,30" clip-path="url(%23t)" stroke="%23cf142b" stroke-width="4"/><path d="M30,0 v30 M0,15 h60" stroke="%23fff" stroke-width="10"/><path d="M30,0 v30 M0,15 h60" stroke="%23cf142b" stroke-width="6"/></g></svg>');
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 5px;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background-color: #023047;
    transition: all 0.3s ease;
    display: block;
}

/* Mobil menü açık durumundaki hamburger animasyonu */
.mobile-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Menü açıkken body scroll'u engelle */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0003DF 0%, #0046FF 50%, #2563eb 100%);
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 80px;
}

/* Modern Animasyon Stilleri */
.modern-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.4;
    z-index: 1;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.15);
}

.shape.circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    top: 15%;
    right: 10%;
    animation-name: floatCircle;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid rgba(255, 255, 255, 0.15);
    top: 55%;
    left: 10%;
    animation-name: floatTriangle;
}

.shape.square {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    top: 25%;
    left: 20%;
    transform: rotate(45deg);
    animation-name: floatSquare;
}

.shape.small {
    transform: scale(0.6);
    opacity: 0.3;
}

.shape.circle.small {
    top: 65%;
    right: 25%;
    animation-delay: 2s;
    animation-name: floatSmallCircle;
}

.shape.triangle.small {
    top: 10%;
    left: 40%;
    animation-delay: 4s;
    animation-name: floatSmallTriangle;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 700px;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #FFB703;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1.4;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #FFB703;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    background-color: #fff;
    color: #0003DF;
}

/* Scroll Down Button */
.scroll-down-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    width: max-content;
    animation: bounce 2s infinite;
}

.scroll-down-btn .scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-down-btn .scroll-arrow {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Animations */
@keyframes floatCircle {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -40px) rotate(90deg); }
    50% { transform: translate(0, -80px) rotate(180deg); }
    75% { transform: translate(-40px, -40px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes floatTriangle {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-50px, -30px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes floatSquare {
    0% { transform: translate(0, 0) rotate(45deg); }
    25% { transform: translate(30px, 30px) rotate(135deg); }
    50% { transform: translate(60px, 0) rotate(225deg); }
    75% { transform: translate(30px, -30px) rotate(315deg); }
    100% { transform: translate(0, 0) rotate(405deg); }
}

@keyframes floatSmallCircle {
    0% { transform: scale(0.6) translate(0, 0); }
    50% { transform: scale(0.6) translate(-60px, 60px); }
    100% { transform: scale(0.6) translate(0, 0); }
}

@keyframes floatSmallTriangle {
    0% { transform: scale(0.6) rotate(0deg); }
    50% { transform: scale(0.6) rotate(180deg); }
    100% { transform: scale(0.6) rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { 
        transform: translate(-50%, 0);
    }
    50% { 
        transform: translate(-50%, -10px);
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1;
        margin-right: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.6rem;
        font-size: 0.85rem;
    }
    
    .scroll-down-btn {
        bottom: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
    
    .logo-img {
        width: 90px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0003DF 0%, #0046FF 50%, #2563eb 100%);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background-color: #FFB703;
    color: #fff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: #FFB703;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-column li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    white-space: nowrap;
}

/* Footer İletişim Bilgileri */
.footer-column:last-child ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column:last-child li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-column:last-child .contact-label {
    flex: 0 0 80px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.footer-column:last-child .contact-value {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    cursor: default;
}

/* İletişim bilgileri için stil - tüm hover ve animasyonları kaldır */
.footer-column:last-child li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column:last-child li span:first-child {
    min-width: 70px;
}

.footer-column:last-child li .contact-info {
    color: rgba(255, 255, 255, 0.9);
    cursor: default;
}

/* İletişim bilgileri için stil - link özelliklerini tamamen kaldır */
.footer-column:last-child li a {
    all: unset;
    color: rgba(255, 255, 255, 0.9);
    cursor: default;
    pointer-events: none;
    white-space: nowrap;
}

/* Diğer footer linkler için stil */
.footer-column:not(:last-child) li a {
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.footer-column:not(:last-child) li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFB703;
    transition: width 0.3s ease;
}

.footer-column:not(:last-child) li a:hover {
    color: #FFB703;
}

.footer-column:not(:last-child) li a:hover::after {
    width: 100%;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #FFB703;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form .submit-btn:hover {
    background-color: #fff;
    color: #0003DF;
    transform: translateX(3px);
}

.newsletter-form .submit-btn svg {
    width: 18px;
    height: 18px;
}

.copyright-bar {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.copyright-bar .divider {
    color: rgba(255, 255, 255, 0.3);
}

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

    .footer-info {
        max-width: 100%;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
        .footer-column:last-child .contact-label {
    flex: 0;

}

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        background: none;
        padding: 0;
    }

    .newsletter-form input {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        margin-bottom: 1rem;
    }

    .newsletter-form .submit-btn {
        width: 100%;
        border-radius: 50px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0;
    }


    .copyright-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .copyright-bar .divider {
        display: none;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background-color: #F8F9FA;
    overflow: hidden;
}

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

.section-header h2 {
    color: #023047;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    flex: 1;
}

.feature-item {
    padding: 30px;
    background: transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.feature-item:hover h3,
.feature-item:hover p {
    transform: translateY(-3px);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    color: #023047;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
    color: #FF8A00;
}

.feature-item h3 {
    font-size: 1.15rem;
    color: #023047;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: -40px;
}

.illustration img {
    max-width: 100%;
    height: auto;
}

/* Stats Section */
.stats-section {
    background-color: #FF8A00;
    padding: 40px 0;
    position: relative;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    color: #fff;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column;
    }

    .features-grid {
        width: 100%;
    }

    .illustration {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-item {
        padding: 20px;
    }
}

@media screen and (max-width: 839px) {
    .stats-grid {
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
        flex: none;
    }
}

/* Yükleme Ekranı Stilleri */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-icon {
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

@media screen and (max-height: 1000px) and (min-height: 900px) {
    #about-content .features-grid .feature-item{
        padding: 20px;
    }

    #about-content .illustration{
        margin-top: -70px;
    }

    #service-content .section-header{
        max-width: 800px;
        margin-bottom: 40px;
    }

    #service-content .section-header p {
        max-width: 800px;
    }

    #service-content .service-card{
        padding-top: 20px;
        padding-bottom: 20px;
    }


    #reference-content .section-header{
        max-width: 800px;
        margin-bottom: 40px;
    }

    #reference-content .section-header p {
        max-width: 800px;
    }

    #contact-content .section-header{
        margin-bottom: 20px;
    }

    #contact-content .contact-content{
        margin-bottom: 10px;
    }
}

.why-choose {
    min-height: 100vh;
    background: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0;
}

.why-choose > div {
    width: 100%;
}

.why-choose .stats-section{
    margin-top: 40px;
}

@media screen and (max-width: 839px) {
    .stat-item{
        height: 150px;
    }
}

/* Smooth Scroll için HTML ve Body ayarları */
html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
    transition: all 0.5s ease-in-out;
}


/* Diğer stiller burada devam eder... */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.preloader svg {
    width: 75px;
    height: 75px;
}

.cls-1 {
    fill: #fb8501;
}
.cls-2 {
    fill: #ffb703;
}
.cls-3 {
    fill: #219ebc;
}
.cls-4 {
    fill: #023047;
}

body.loading {
    overflow: hidden;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-icon {
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    transform-origin: 55% 45%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInPolvius {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-section {
    background-color: #0003DF;
    padding: 30px 0;
    position: relative;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    padding-top: 45px;
    color: #fff;
    width: 200px;
    position: relative;
}

.stat-icon-circle {
    background-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.stat-icon-circle svg {
    width: 28px;
    height: 28px;
    color: #FFB703;
}

.stat-item h3 {
    color: #FFB703;
    font-size: 1.8rem;
    font-weight: 700;
    margin: -25px 0px 5px 15px;
    line-height: 1;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.stat-item h3 .number,
.stat-item h3 .plus {
    display: inline-block;
}

.stat-item h3 .plus {
    color: #FFB703;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 400;
    margin-top: -5px;
}

.percentage {
    font-size: 1.4rem;
    font-weight: 700;
}

.plus {
    font-size: 1.4rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .stats-grid {
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        width: 160px;
    }

    .stat-icon-circle {
        width: 50px;
        height: 50px;
    }

    .stat-icon-circle svg {
        width: 22px;
        height: 22px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }
}

.who-we-are {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    overflow: hidden;
}

.who-we-are-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-content {
    flex: 1;
    padding-right: 20px;
}

.text-content h2 {
    font-size: 2.5rem;
    color: #023047;
    margin-bottom: 25px;
    position: relative;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FFB703;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #023047;
    margin-bottom: 30px;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FFB703;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.learn-more-btn:hover {
    background-color: #0035DF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 53, 223, 0.3);
}

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

.team-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .who-we-are-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .text-content {
        padding-right: 0;
    }

    .text-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .image-content {
        order: -1;
    }

    .team-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .who-we-are {
        padding: 60px 0;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .team-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .who-we-are {
        padding: 40px 0;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .team-image {
        max-width: 100%;
    }
}

/* Scroll to Top Button Styles */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFB703;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #fff;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: pulse 2s infinite;
}

.scroll-to-top svg {
    animation: arrowBounce 2s infinite;
}

.scroll-to-top:hover {
    background-color: #0003DF;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    animation: none;
}

.scroll-to-top:hover svg {
    animation: none;
    transform: translateY(-3px);
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 183, 3, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0);
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

        .about-features {
            min-height: 100vh;
            background-color: #0035DF;
            padding: 80px 0;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .about-features .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .about-features-content {
            text-align: center;
        }

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

        .about-features .section-header h2 {
            color: #FFB703;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-features .section-header p {
            color: #fff;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .features-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
        }

        .left-features,
        .right-features {
            display: flex;
            flex-direction: column;
            gap: 30px;
            flex: 1;
        }

        .feature-box {
            background: transparent;
            padding: 25px;
            text-align: left;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: none;
            background: transparent;
        }

        .feature-icon {
            background: rgba(255, 255, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0;
            flex-shrink: 0;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .feature-box:hover .feature-icon {
            background: rgba(255, 183, 3, 0.1);
            border-color: #FFB703;
            transform: scale(1.1);
        }

        .feature-icon svg {
            color: #fff;
            width: 24px;
            height: 24px;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon svg {
            color: #FFB703;
        }

        .feature-box h3 {
            color: #FFB703;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .feature-box p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        .feature-text {
            flex: 1;
        }

        .center-illustration {
            flex: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .center-illustration img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
            animation: float 6s ease-in-out infinite;
        }

        @media (max-width: 1200px) {
            .features-wrapper {
                flex-direction: column;
            }

            .left-features,
            .right-features {
                flex-direction: row;
                width: 100%;
            }

            .feature-box {
                flex: 1;
            }

            .center-illustration {
                order: -1;
                margin-bottom: 40px;
            }

            .center-illustration img {
                max-width: 60%;
            }
        }

        @media (max-width: 768px) {
            .about-features {
                padding: 60px 0;
            }

            .about-features .section-header h2 {
                font-size: 2rem;
            }

            .about-features .section-header p {
                font-size: 1rem;
            }

            .left-features,
            .right-features {
                flex-direction: column;
            }

            .feature-box {
                text-align: center;
            }

            .feature-icon {
                margin: 0 auto 15px;
            }

            .center-illustration img {
                max-width: 80%;
            }
        }

        @media (max-width: 480px) {
            .about-features {
                padding: 40px 0;
            }

            .about-features .section-header h2 {
                font-size: 1.8rem;
            }

            .center-illustration img {
                max-width: 100%;
            }
        }

        .team-section {
            min-height: 100vh;
            background: #fff;
            padding: 80px 0;
            display: flex;
            align-items: center;
        }

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

        .team-section .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .team-section .section-header h2 {
            color: #023047;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .team-section .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .team-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .team-card::before,
        .team-card::after {
            content: '';
            position: absolute;
            top: 0;
            height: 3px;
            width: 0;
            transition: width 0.3s ease;
        }

        .team-card::before {
            left: 0;
            background: #FFED00;
        }

        .team-card::after {
            right: 0;
            background: #163962;
        }

        .team-card:hover::before,
        .team-card:hover::after {
            width: 50%;
        }

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

        .member-image {
            width: 120px;
            height: 120px;
            margin: 20px auto 0;
            border-radius: 50%;
            overflow: hidden;
        }

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

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

        .member-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .member-info h3 {
            color: #023047;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .member-info .position {
            color: #0035DF;
            font-size: 1rem;
            font-weight: 500;
            display: block;
            margin-bottom: 20px;
        }

        .member-info p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .team-grid {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .team-section {
                padding: 60px 0;
            }

            .team-grid {
                grid-template-columns: repeat(1, 1fr);
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }

            .team-section .section-header h2 {
                font-size: 2rem;
            }

            .team-section .section-header p {
                font-size: 1rem;
            }

            .member-info {
                padding: 0;
            }
        }

    .services-section {
        min-height: 100vh;
        background: #fff;
        padding: 80px 0;
        display: flex;
        align-items: center;
    }

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

    .services-section .section-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-section .section-header h2 {
        color: #023047;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .services-section .section-header p {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0 auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

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

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

    .service-icon {
        width: 70px;
        height: 70px;
        background: rgba(0, 53, 223, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
        background: #0035DF;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
        color: #0035DF;
        transition: all 0.3s ease;
    }

    .service-card:hover .service-icon svg {
        color: #fff;
    }

    .service-card h3 {
        color: #023047;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    @media (max-width: 768px) {
        .services-section {
            padding: 60px 0;
        }

        .services-section .section-header h2 {
            font-size: 2rem;
        }

        .services-section .section-header p {
            font-size: 1rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    .references-section {
        min-height: 100vh;
        background: #fff;
        padding: 80px 0;
        display: flex;
        align-items: center;
    }

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

    .references-section .section-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .references-section .section-header h2 {
        color: #023047;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .references-section .section-header p {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0 auto 30px;
    }

    .references-section .cta-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: #FFB703;
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(255, 183, 3, 0.2);
    }

    .references-section .cta-button:hover {
        background-color: #0035DF;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 53, 223, 0.3);
        color: #fff;
    }

    .references-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 250px);
        gap: 20px;
        margin-top: 40px;
    }

    .reference-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

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

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

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

    .reference-item.large {
        grid-column: span 3;
        grid-row: span 2;
    }

    .reference-item:nth-child(2) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .reference-item:nth-child(3) {
        grid-column: span 3;
        grid-row: span 1;
    }

    @media (max-width: 1024px) {
        .references-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto;
            gap: 15px;
        }

        .reference-item.large {
            grid-column: span 2;
            grid-row: span 1;
            height: 400px;
        }

        .reference-item:nth-child(2),
        .reference-item:nth-child(3) {
            grid-column: span 1;
            height: 300px;
        }
    }

    @media (max-width: 768px) {
        .references-section {
            padding: 60px 0;
        }

        .references-section .section-header h2 {
            font-size: 2rem;
        }

        .references-section .section-header p {
            font-size: 1rem;
        }

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

        .reference-item,
        .reference-item.large,
        .reference-item:nth-child(2),
        .reference-item:nth-child(3) {
            grid-column: span 1;
            height: 250px;
        }
    }

    .contact-section {
        min-height: 100vh;
        background: #fff;
        padding: 100px 0 0;
        display: flex;
        flex-direction: column;
    }

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

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h2 {
        color: #023047;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .contact-content {
        display: flex;
        gap: 50px;
        margin-bottom: 20px;
    }

    .contact-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-illustration {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 5px;
    }

    .contact-illustration img {
        max-width: 90%;
        height: auto;
    }

    .contact-info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        margin-top: 5px;
    }

    .contact-info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        background: rgba(0, 53, 223, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-circle svg {
        color: #0035DF;
        width: 18px;
        height: 18px;
    }

    .info-text h3 {
        color: #023047;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 3px;
    }

    .info-text p {
        color: #666;
        font-size: 0.8rem;
        margin: 0;
    }

    .contact-right {
        flex: 1;
    }

    .contact-form {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #eee;
        border-radius: 5px;
        font-size: 1rem;
        color: #333;
        transition: all 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #0035DF;
        outline: none;
    }

    .contact-form textarea {
        height: 150px;
        resize: none;
    }

    .send-button {
        background: #FFB703;
        color: #fff;
    padding: 8px 24px;
        border: none;
        border-radius: 50px;
    font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        align-self: flex-start;
    }

    .send-button:hover {
        background: #0035DF;
        color: #fff;
        transform: translateY(-2px);
    }

    .map-container {
        width: 100%;
        max-width: 1200px;
        height: 200px;
        margin: 20px auto 25px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .map-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
        pointer-events: none;
        border-radius: 10px;
    }

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

    @media (max-width: 1024px) {
        .contact-content {
            flex-direction: column;
            gap: 30px;
            margin-bottom: 20px;
        }

        .map-container {
            height: 140px;
        }
    }

    @media (max-width: 768px) {
        .contact-section {
            padding: 80px 0 0;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .section-header p {
            font-size: 1rem;
        }

        .contact-illustration img {
            max-width: 90%;
        }

        .send-button {
            width: 100%;
        }

        .map-container {
            height: 120px;
        }

        .contact-info {
            flex-direction: column;
            align-items: center;
        }

        .contact-info-item {
            width: 100%;
            max-width: 250px;
        }
    }

.footer {
    background-color: #0003DF;
    padding: 80px 0 0;
    color: #fff;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-logo-section {
    max-width: 300px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FFB703;
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.footer-links-section {
    display: flex;
    justify-content: flex-start; /* space-between yerine flex-start kullanıyoruz */
    gap: 20px; /* Sütunlar arası boşluğu azaltıyoruz */
    margin-top: -40px;
}

.footer-column {
    flex: 0 1 auto; /* flex: 1 yerine flex: 0 1 auto kullanıyoruz ki sütunlar kendi içeriği kadar yer kaplasın */
    margin-right: 40px; /* Sütunlar arası sağ margin ekliyoruz */
}

.footer-column:last-child {
    margin-right: 0; /* Son sütunun sağ margin'ini kaldırıyoruz */
}

.footer-column h3 {
    color: #FFB703;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #FFB703;
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
}

.contact-label {
    color: #FFB703;
    font-size: 0.95rem;
    min-width: 70px;
}

.contact-value {
    font-size: 0.95rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    align-items: center;
    padding: 0;
    border: none;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: none;
    background: #FFB703;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin: 2px;
}

.submit-btn:hover {
    background: #e6a503;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    margin-top: 60px;
    text-align: center;
}

.copyright-bar p {
    margin: 0;
    font-size: 0.9rem;
}

.copyright-bar a {
    color: #fff;
    text-decoration: none;
}

.copyright-bar a:hover {
    color: #FFB703;
}

.divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo-section {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-links-section {
        flex-wrap: wrap;
        margin-top: 0;
    }
    
    .footer-column {
        flex: 1 0 40%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-links-section {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-label {
        min-width: auto;
    }
}

@media (min-width: 993px) {
    .footer-content {
        flex-direction: row;
        gap: 40px;
    }
    
    .footer-logo-section {
        flex: 1;
    }
    
    .footer-links-section {
        flex: 3;
        margin-top: 0;
    }
}

.submit-btn:hover {
    background: #fff;
}

.submit-btn:hover svg {
    color: #0003DF;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.contact-form input:invalid {
    border-color: #eee;
}

.contact-form input[type="email"]:invalid {
    background-image: none;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 120px;
    display: none;
    z-index: 1000;
}

.lang-dropdown.show {
    display: block;
}