/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #f88414;
    --secondary-color: #f88414;
    --accent-color: #f88414;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #2d1c13;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Modern Header ve Navbar */
header {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: box-shadow 0.3s;
    margin-bottom: 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.logo img {
    height: 64px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.08) rotate(-2deg);
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #2d1c13;
    font-family: 'Poppins', sans-serif;
}

.logo-sub {
    font-size: 0.9rem;
    color: #2d1c13;
    letter-spacing: 0.15em;
    margin-left: 0.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #222;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.5rem 0.8rem 0.3rem 0.8rem;
    border-radius: 6px 6px 0 0;
    transition: color 0.32s cubic-bezier(.4,0,.2,1), background 0.32s cubic-bezier(.4,0,.2,1), box-shadow 0.32s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
    display: block;
    position: relative;
    box-shadow: none;
}

.nav-links a::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, #f58e2e 0%, #e65c00 100%);
    border-radius: 2px;
    transition: left 0.32s cubic-bezier(.4,0,.2,1), right 0.32s cubic-bezier(.4,0,.2,1), background 0.32s, opacity 0.22s;
    opacity: 0;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #f88414;
    background: #f3f6fd;
    transform: scale(1.09);
    box-shadow: 0 4px 18px -8px #2563eb33;
}

.nav-links a:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px -4px #2563eb33;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    left: 0;
    right: 0;
    opacity: 1;
    background: linear-gradient(90deg, #f88414 0%, #f88414 100%);
}

.nav-links a.active {
    color: #f88414;
    background: #f3f6fd;
    transform: scale(1.09);
    box-shadow: 0 4px 18px -8px #2563eb33;
}

/* Tarabak sayfası için özel stiller */
.nav-links a[href="tarabak.html"] {
    color: #f88414;
}

.nav-links a[href="tarabak.html"]:hover,
.nav-links a[href="tarabak.html"]:focus {
    color: #f88414;
    background: #fff5eb;
    box-shadow: 0 4px 18px -8px #f8841433;
}

.nav-links a[href="tarabak.html"]:hover::after,
.nav-links a[href="tarabak.html"].active::after {
    background: linear-gradient(90deg, #f88414 0%, #ff9d4d 100%);
}

.nav-links a[href="tarabak.html"].active {
    color: #f88414;
    background: #fff5eb;
    box-shadow: 0 4px 18px -8px #f8841433;
}

.menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 0.5rem;
}

.menu-bar a {
    text-decoration: none;
    color: #2d1c13;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 0.7rem 1.2rem 0.5rem 1.2rem;
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: background 0.2s, color 0.2s;
    text-transform: none;
    background: transparent;
    display: flex;
    align-items: center;
}

.menu-bar a.active, .menu-bar a:hover {
    background: #fbeee2;
    color: #2d1c13;
}

.menu-bar a.active::after, .menu-bar a:hover::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #2d1c13;
    border-radius: 2px;
}

.menu-bar .apply-btn {
    background: #ff6600;
    color: #fff;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    margin-left: 1.5rem;
    transition: background 0.2s;
}

.menu-bar .apply-btn:hover {
    background: #e65c00;
}

.social-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.social-bar i {
    font-size: 2rem;
    color: #2d1c13;
    margin-right: 0.3rem;
}

.social-bar span {
    font-size: 0.85rem;
    color: #2d1c13;
    opacity: 0.8;
    margin-top: 0.2rem;
}

/* Responsive Menü */
@media (max-width: 900px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1rem;
    }
    .logo img {
        height: 48px;
    }
    .nav-links {
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0.5rem;
    }
    .logo {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: flex-start;
    }
    .nav-links a {
        padding: 0.7rem 1rem;
        width: 100%;
        border-radius: 6px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: slideUp 1s ease;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: slideUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: slideUp 1s ease 0.4s;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f88414, #ff9d4d);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.cta-button:hover::before {
    opacity: 1;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding-top: 2rem;
}

.services-detailed {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

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

.service-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.service-icon {
    font-size: 4rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--primary-color);
    color: var(--white);
}

.service-content h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.service-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-features li:hover i {
    color: var(--white);
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-member:hover {
    transform: translateY(-15px);
}

.team-member:hover::before {
    opacity: 0.1;
}

.member-image {
    font-size: 7rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.team-member:hover .member-image {
    transform: scale(1.1);
    color: var(--accent-color);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.team-member p {
    color: #666;
    position: relative;
    z-index: 1;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-item:hover {
    transform: translateY(-15px);
}

.value-item:hover::before {
    opacity: 0.1;
}

.value-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.value-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-item p {
    color: #666;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 15s infinite;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .service-icon {
        margin: 0 auto 2rem;
    }

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

    .service-features li {
        justify-content: center;
        font-size: 1rem;
    }

    .team-member, .value-item {
        padding: 2rem;
    }

    .contact-strong {
        grid-template-columns: 1fr;
        padding: 2rem 0.5rem;
        gap: 2rem;
    }
    .contact-map iframe {
        height: 140px;
    }

    .contact-form-area label,
    .contact-info-block h4 {
        font-size: 0.95rem;
    }

    .contact-form-area input,
    .contact-form-area textarea,
    .contact-info-block p,
    .contact-type h4,
    .radio-item label {
        font-size: 0.9rem;
    }

    .main-slider {
        height: 400px;
    }
    .slide-text h2 {
        font-size: 2.2rem;
    }
    .slide-text p {
        font-size: 1.2rem;
    }
    .slide-text .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .features-showcase {
        padding: 3rem 1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

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

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

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Güçlü İletişim Bölümü */
.contact{
    background: #f3f6fd;
}
.contact-desc {
    text-align: center;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.contact-strong {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    padding: 3rem 2rem;
}

.contact-form-area form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-form-area label {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}
.contact-form-area input,
.contact-form-area textarea {
    padding: 1rem;
    border: 1.5px solid #e0e7ef;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: border 0.2s;
}
.contact-form-area input:focus,
.contact-form-area textarea:focus {
    border: 1.5px solid #2563eb;
    outline: none;
    background: #fff;
}
.contact-form-area textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-start;
}
.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: #f3f6fd;
    border-radius: 10px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.04);
}
.contact-info-block i {
    font-size: 1.7rem;
    color: #2563eb;
    margin-top: 0.2rem;
}
.contact-info-block h4 {
    margin: 0 0 0.2rem 0;
    font-size: 1.08rem;
    color: #222;
    font-weight: 700;
}
.contact-info-block p {
    margin: 0;
    color: #444;
    font-size: 1rem;
}
.contact-map {
    margin-top: 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(37,99,235,0.08);
}

@media (max-width: 900px) {
    .contact-strong {
        grid-template-columns: 1fr;
        padding: 2rem 0.5rem;
        gap: 2rem;
    }
    .contact-map iframe {
        height: 140px;
    }
}

/* Slider Styles */
.main-slider {
    width: 100%;
    height: 600px;
    margin-bottom: 4rem;
    margin-top: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.slide-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 80%;
    max-width: 800px;
    padding: 0 2rem;
}

.slide-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.slide-text .cta-button {
    background: #fff;
    color: #f88414;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-text .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f88414 !important;
    color: #fff;
}

/* İkinci slider için özel stil */
.swiper-slide:nth-child(2) .slide-text .cta-button:hover {
    background: #f88414;
}
.swiper-slide:first-child .slide-text .cta-button:hover {
    background: #f88414 !important;
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(37, 99, 235, 0.8);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #2563eb !important;
    opacity: 1;
}

@media (max-width: 1440px) {
    .main-slider {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-slider {
        width: 100%;
        height: 400px;
        max-width: 100%;
        border-radius: 0;
    }
    .slide-text {
        width: 90%;
        padding: 0 1rem;
    }
    .slide-text h2 {
        font-size: 2.2rem;
    }
    .slide-text p {
        font-size: 1.2rem;
    }
    .slide-text .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

/* Slider butonları için genel stil */
.slide-text .cta-button {
    background: #fff;
    color: #f88414;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-text .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f88414 !important;
    color: #fff !important;
}

/* İlk slider için hover stili */
.swiper-slide:first-child .slide-text .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f88414 !important;
    color: #fff;
}

/* Tarabak slider için özel stil */
.tarabak-slide .slide-text .cta-button {
    color: #f88414;
}

.tarabak-slide .slide-text .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f88414 !important;
    color: #fff;
}

.submit-button {
    background: linear-gradient(45deg, #f88414, #f88414);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f88414, #f88414);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(248, 132, 20, 0.3);
}

.submit-button:hover::before {
    opacity: 1;
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.submit-button span {
    position: relative;
    z-index: 1;
}

.contact-type {
    background: #f8fafd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-type h4 {
    color: #2563eb;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f88414;
}

.radio-item label {
    font-size: 1rem;
    color: #222;
    cursor: pointer;
    margin: 0;
}

.radio-item:hover label {
    color: #f88414;
}

.header-social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 2.5rem;
    text-align: center;
}
.header-social-box a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.header-social-box a:hover {
    color: #f88414;
}
.header-social-box i {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}
.header-social-box span {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: block;
    line-height: 1.2;
}
@media (max-width: 900px) {
    .header-social-box {
        margin-left: 1rem;
    }
    .header-social-box i {
        font-size: 2rem;
    }
    .header-social-box span {
        font-size: 0.95rem;
    }
}

.header-social-fixed {
    position: absolute;
    top: 18px;
    right: 38px;
    z-index: 1100;
    transform: scale(0.75);
}
@media (max-width: 900px) {
    .header-social-fixed {
        top: 10px;
        right: 10px;
        transform: scale(0.6);
    }
}

/* Mobil Menü */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease-in-out;
    z-index: 1050;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-logo {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

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

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu .nav-links a {
    padding: 1rem;
    width: 100%;
    border-radius: 8px;
}

.mobile-menu-overlay {
    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: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Tasarım */
@media (max-width: 900px) {
    nav {
        padding: 0.8rem 1.5rem;
        position: relative;
    }

    .logo {
        margin-bottom: 0;
    }

    .logo img {
        height: 48px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu .nav-links {
        display: flex;
    }

    .header-social-box {
        display: none;
    }

    .header-social-fixed {
        top: 10px;
        right: 40px;
        transform: scale(0.6);
    }
}

@media (max-width: 600px) {
    nav {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu-btn {
        right: 15px;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        margin: 4px 0;
    }

    .slide-text h2 {
        font-size: 2rem;
    }
    .slide-text p {
        font-size: 1rem;
    }
} 