/* Genel Stiller */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

:root {
    --primary-color: #2c3e50;    /* Koyu lacivert */
    --secondary-color: #e74c3c;  /* Kırmızı */
    --accent-color: #3498db;     /* Mavi */
    --text-color: #2c3e50;
    --light-bg: #f5f6fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1.6rem;
}

/* Header Stili */
.navbar {
    background-color: var(--white);
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 3.2rem;
    color: #F37820;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    font-weight: 1000;
}

.logo-text .subtitle {
    font-family: 'Solitreo', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: #20378D;
    letter-spacing: 3px;
    -webkit-text-stroke: 0;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

/* Hero Bölümü */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 8rem;
    background: var(--light-bg);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 8rem);
    background: var(--light-bg);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 65rem;
    margin-left: 5%;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.slide-badge {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.slide-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.4rem;
    color: var(--secondary-color);
}

.feature-item span {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.slide-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.slide-description {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.slider-controls {
    position: absolute;
    bottom: 4rem;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-arrow {
    width: 5rem;
    height: 5rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

.slider-arrow:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .slide-content {
        margin: 0 2rem;
        padding: 3rem;
        max-width: calc(100% - 4rem);
    }

    .slide-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-item i {
        font-size: 2rem;
    }

    .feature-item span {
        font-size: 1.3rem;
    }

    .slide-bg {
        background-size: cover;
        background-position: center;
    }
    
    .slide-content {
        margin: 0 2rem;
        padding: 2rem;
        max-width: calc(100% - 4rem);
        background: rgba(255, 255, 255, 0.98);
    }

    .slide-content h2 {
        font-size: 3.6rem;
    }

    .slide-title {
        font-size: 2.4rem;
    }

    .slide-description {
        font-size: 1.8rem;
    }

    .slider-arrows {
        display: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 50rem;
    margin-left: 5%;
    margin-right: auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero .logo-text {
    font-size: 8rem;
    color: #F37820;
    text-align: left;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    font-family: 'Permanent Marker', cursive;
    font-weight: 1000;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.hero .logo-text .subtitle {
    font-size: 3.5rem;
    color: #20378D;
    margin-top: 0.5rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.slogan {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 2rem;
}

.slogan::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--secondary-color);
    border-radius: 2px;
}

.highlight {
    font-size: 2.6rem;
    color: var(--white);
    margin: 2rem 0;
    font-weight: 500;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 3.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5rem;
    font-weight: 600;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: auto;
    position: relative;
    overflow: hidden;
}

.phone-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.phone-button:hover {
    transform: translateY(-5px);
    background-color: #c0392b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.phone-button:hover::before {
    transform: translateX(100%);
}

.phone-button i {
    font-size: 2.4rem;
    animation: pulse 2s infinite;
}

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

/* Hizmetler Bölümü */
.services {
    padding: 10rem 5%;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
    font-size: 3.6rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 3px;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover * {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.service-card i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card p {
    color: var(--text-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

/* Hakkımızda Bölümü */
.about {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-text, .quality-guarantee {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-text {
    background: var(--white);
    padding: 4rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.about-text h3 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.highlight-box {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.highlight-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.highlight-box h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.highlight-box ul li {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.highlight-box ul li i {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.service-vehicle {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.van-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    object-fit: cover;
    max-height: 400px;
}

.service-vehicle p {
    font-size: 1.6rem;
    color: var(--text-color);
    text-align: center;
    line-height: 1.6;
}

.quality-guarantee {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    text-align: center;
    justify-content: space-between;
}

.quality-image {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
}

.quality-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.quality-item i {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.quality-item p {
    font-size: 1.4rem;
    color: var(--text-color);
}

.customer-count {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.quality-items-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: 100%;
}

.stats-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.stat-info h4 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-info p {
    font-size: 1.6rem;
    color: var(--text-color);
    margin: 0;
}

/* İletişim Bölümü */
.contact {
    padding: 10rem 5%;
    background-color: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 120rem;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 3rem;
}

.contact-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.6rem;
    display: block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.map {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map iframe {
    width: 100%;
    height: 45rem;
    border: none;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
    color: #F37820;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
}

.footer-logo .subtitle {
    font-family: 'Solitreo', cursive;
    font-size: 1.6rem;
    color: var(--white);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.footer-about {
    font-size: 1.4rem;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 2rem;
    color: var(--white);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4rem;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 1.6rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-contact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.footer-contact-item span {
    font-size: 1.4rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 1.4rem;
    opacity: 0.8;
}

.footer-phone {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

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

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    html {
        font-size: 56.25%; /* 1rem = 9px */
    }

    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: fixed;
        top: 8rem;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu {
        display: block;
        font-size: 2.4rem;
        color: var(--primary-color);
        cursor: pointer;
    }

    .hero-content {
        margin: 0 2rem;
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%; /* 1rem = 8px */
    }

    .navbar {
        padding: 1rem;
    }

    .logo-text {
        font-size: 2.4rem;
    }

    .logo-text .subtitle {
        font-size: 1.2rem;
    }

    .hero-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card i {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.8rem;
    }

    .service-card p {
        font-size: 1.4rem;
    }

    .floating-contact {
        width: 100%;
        border-radius: 0;
    }

    .floating-contact-content {
        width: 100%;
    }
}

/* Sabit Telefon Pop-up */
.floating-contact {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 1000;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 2rem;
    transition: all 0.3s ease;
    transform: translateX(calc(100% + 3rem));
}

.floating-contact.active {
    transform: translateX(0);
}

.floating-contact-toggle {
    position: absolute;
    left: -6rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--white);
    width: 6rem;
    height: 6rem;
    border-radius: 1.5rem 0 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: -3px 0 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.floating-contact-toggle:hover {
    background: #c0392b;
    width: 7rem;
}

.floating-contact-toggle i {
    font-size: 2.4rem;
}

.floating-contact-content {
    width: 30rem;
}

.floating-contact-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.floating-contact-header i {
    font-size: 2.4rem;
    color: var(--secondary-color);
}

.floating-contact-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.floating-contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating-contact-number {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-contact-number:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.floating-contact-number:hover * {
    color: var(--white);
}

.floating-contact-number i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.floating-contact-number span {
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 0;
        right: 0;
        width: 100%;
        border-radius: 2rem 2rem 0 0;
        transform: translateY(calc(100% - 6rem));
    }

    .floating-contact.active {
        transform: translateY(0);
    }

    .floating-contact-toggle {
        left: 50%;
        top: -6rem;
        transform: translateX(-50%);
        width: 12rem;
        height: 6rem;
        border-radius: 1.5rem 1.5rem 0 0;
    }

    .floating-contact-toggle:hover {
        width: 12rem;
    }

    .floating-contact-content {
        width: 100%;
    }
}

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.slider-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.slider-arrow {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-arrow i {
    font-size: 2.4rem;
}

@media (max-width: 768px) {
    .slider-arrows {
        display: none;
    }
    
    .slider-dot {
        width: 1rem;
        height: 1rem;
    }
}

.video-container {
    max-width: 100rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
}

.video-wrapper {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-description {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.8;
}

.video-description h3 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.slide-content-center {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.cta-button-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 4rem;
    background: rgba(231, 76, 60, 0.9);
    color: var(--white);
    text-decoration: none;
    border-radius: 5rem;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cta-button-center:hover {
    background: rgba(192, 57, 43, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} 