/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header ve Navigasyon */
header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #ff4d4d;
    font-size: 1.8rem;
    font-weight: 800;
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff4d4d;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ff4d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,77,77,0.4);
}

/* Hizmetler Section */
.services {
    padding: 5rem 1rem;
    background-color: #f8f8f8;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-size: 2.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #ff4d4d;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Fiyatlar Section */
.pricing {
    padding: 5rem 1rem;
    background-color: #fff;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-size: 2.5rem;
}

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

.price-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #ff4d4d;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,77,77,0.2);
}

.price-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.price {
    font-size: 2.5rem;
    color: #ff4d4d;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card ul li {
    margin-bottom: 1rem;
    color: #666;
}

.price-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff4d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-button:hover {
    background-color: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,77,77,0.4);
}

/* İletişim Section */
.contact {
    padding: 5rem 1rem;
    background-color: #f8f8f8;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-size: 2.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-whatsapp {
}

.whatsapp-promo {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.whatsapp-promo:hover {
    transform: translateY(-5px);
}

.whatsapp-promo i.fa-whatsapp {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1.5rem;
}

.whatsapp-promo h3 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.whatsapp-promo p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.whatsapp-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.feature-item i {
    color: #25D366;
    font-size: 1.2rem;
}

.feature-item span {
    color: #666;
    font-size: 1rem;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background-color: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

.whatsapp-cta i {
    font-size: 1.2rem;
}

.contact-info {
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #ff4d4d;
    font-size: 1.2rem;
    width: 24px;
}

.working-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.working-hours i {
    color: #ff4d4d;
    font-size: 1.2rem;
}

.hours-info h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hours-info p {
    color: #666;
    margin: 0;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff4d4d;
}

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

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff4d4d;
}

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

/* WhatsApp Button and Bubble */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.whatsapp-button i {
    color: #fff;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-bubble {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-bubble span {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.bubble-arrow {
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}

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

/* Referanslar Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

.testimonial-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.testimonial-card:hover img {
    height: 300px;
    object-fit: contain;
    background-color: #000;
}

.testimonial-content {
    padding: 1.5rem;
    background: #fff;
    position: relative;
}

.testimonial-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    color: #666;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.testimonial-content strong {
    color: #ff4d4d;
    font-weight: 600;
}

@media (min-width: 1200px) {
    .testimonial-slider {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .testimonial-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .testimonial-slider {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }

    .testimonial-card:hover {
        transform: scale(1.03);
    }

    .testimonial-card:hover img {
        height: 250px;
    }
}

/* Şehirler Arası Section */
.intercity {
    padding: 5rem 1rem;
    background-color: #f8f8f8;
}

.intercity h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-size: 2.5rem;
}

.intercity-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intercity-info {
    text-align: center;
    margin-bottom: 3rem;
}

.intercity-info h3 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intercity-info p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.city-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.city-card i {
    font-size: 2.5rem;
    color: #ff4d4d;
    margin-bottom: 1.5rem;
}

.city-card h4 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.city-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.delivery-time {
    display: inline-block;
    background-color: #ff4d4d;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.intercity-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature i {
    font-size: 2rem;
    color: #ff4d4d;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

.intercity-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Hakkımızda Section */
.about {
    padding: 5rem 1rem;
    background-color: #fff;
}

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

.about-content h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.experience-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.experience-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4d4d;
    margin-bottom: 0.5rem;
}

.experience-item .label {
    color: #666;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature i {
    font-size: 1.5rem;
    color: #ff4d4d;
    background: #fff4f4;
    padding: 1rem;
    border-radius: 50%;
}

.feature-text h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive Tasarım için ek stiller */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

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

    .experience-item {
        padding: 1rem;
    }

    .experience-item .number {
        font-size: 2rem;
    }

    .about-image {
        margin-top: 2rem;
        height: 300px;
    }
}

/* Diğer stiller */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .service-grid,
    .price-grid,
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Mobil Menü */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #1a1a1a;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    /* Grid Layouts */
    .service-grid,
    .price-grid,
    .city-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .testimonial-card {
        width: 100%;
        margin: 0;
    }

    .testimonial-card img {
        height: 200px;
    }

    .testimonial-card:hover img {
        height: 250px;
    }

    /* WhatsApp Button */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button i {
        font-size: 25px;
    }

    /* Section Paddings */
    .services,
    .pricing,
    .testimonials,
    .about,
    .contact,
    .intercity {
        padding: 3rem 1rem;
    }

    /* Text Sizes */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    h2, h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    /* Cards */
    .service-card,
    .price-card,
    .city-card {
        padding: 1.5rem;
    }

    /* Grid Gaps */
    .service-grid,
    .price-grid,
    .city-grid {
        gap: 1rem;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .whatsapp-promo,
    .contact-info {
        padding: 2rem 1.5rem;
    }

    /* Text Sizes */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    h2, h3 {
        font-size: 1.6rem;
    }

    /* Buttons */
    .cta-button,
    .price-button,
    .whatsapp-cta {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .service-card:hover,
    .price-card:hover,
    .city-card:hover,
    .testimonial-card:hover,
    .whatsapp-button:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .whatsapp-button,
    .whatsapp-bubble {
        display: none;
    }
}

/* Smooth Scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
} 