/* Dilek Gıda - CSS Stilleri */

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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Language Styles */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover, .lang-btn.active {
    background: rgba(255,255,255,0.2);
    border-color: #ffd700;
    color: #ffd700;
}

.content-lang {
    display: none;
}

.content-lang.active {
    display: block;
}

/* RTL Support for Arabic */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .hero-content {
    direction: rtl;
}

body.rtl .nav-links {
    flex-direction: row-reverse;
}

body.rtl .hero-buttons {
    flex-direction: row-reverse;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
}

.packages-quick-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 1rem;
}

.packages-quick-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255,215,0,0.5);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.packages-quick-btn i {
    animation: fire 1.5s ease-in-out infinite alternate;
}

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

.call-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

.mobile-menu {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="600" r="200" fill="rgba(255,255,255,0.03)"/><circle cx="600" cy="100" r="150" fill="rgba(255,255,255,0.04)"/></svg>');
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-visual {
    text-align: center;
}

.time-promise {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.time-promise .time {
    font-size: 4rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
    margin-bottom: 1rem;
    display: block;
}

.time-promise h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.time-promise p {
    opacity: 0.9;
}

/* Features */
.features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:nth-child(1) { border-top-color: #ff6b6b; }
.feature-card:nth-child(2) { border-top-color: #4ecdc4; }
.feature-card:nth-child(3) { border-top-color: #45b7d1; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card:nth-child(1) i { color: #ff6b6b; }
.feature-card:nth-child(2) i { color: #4ecdc4; }
.feature-card:nth-child(3) i { color: #45b7d1; }

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Services */
.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.service-item:hover i {
    color: #ffd700;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="300" fill="rgba(255,255,255,0.03)"/><circle cx="800" cy="600" r="200" fill="rgba(255,255,255,0.02)"/><circle cx="600" cy="100" r="150" fill="rgba(255,255,255,0.04)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.packages-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.packages-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.package-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #4ecdc4);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.2);
    border-color: #ffd700;
}

.package-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

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

.package-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.package-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.package-price-big {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4ecdc4;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(78,205,196,0.3);
}

.package-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-btn:hover {
    background: linear-gradient(45deg, #1db355, #0f6b47);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.package-btn::before {
    content: '💬';
    font-size: 1.2rem;
}

/* Why Choose Us */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.why-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-method i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.whatsapp-method i { color: #25d366; }
.phone-method i { color: #667eea; }
.location-method i { color: #ff6b6b; }

.contact-method h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-method a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

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

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounceFloat 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .time-promise .time {
        font-size: 3rem;
    }

    .features-grid,
    .services-grid,
    .why-grid,
    .contact-methods,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .packages-quick-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        margin: 0 0.5rem;
    }

    .packages-header h2 {
        font-size: 2.2rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    
    .package-emoji {
        font-size: 3rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} 
/* ============================================
   MOBİL İYİLEŞTİRMELER
   Mevcut style.css dosyanızın en sonuna ekleyin
   ============================================ */

/* Top Slogan için stiller */
.top-slogan {
    text-align: center;
    padding: 0 0 2rem 0;
    margin-bottom: 3rem;
    position: relative;
}

.top-slogan h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.5px;
}

.top-slogan p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    font-family: 'Nunito', sans-serif;
}

/* Hero'ya padding ekle */
.hero {
    padding-top: 80px;
}

/* Tablet - Orta Boy Ekranlar */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobil - Telefon Ekranları */
@media (max-width: 768px) {
    /* Header */
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(102, 126, 234, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem 0;
    }
    
    .nav-links a {
        width: 100%;
        font-size: 1.1rem;
    }
    
    .packages-quick-btn {
        display: none;
    }
    
    .call-text {
        display: none;
    }

    /* Top Slogan Mobil */
    .top-slogan {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .top-slogan h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .top-slogan p {
        font-size: 1rem;
        line-height: 1.4;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 3rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 1.2rem 2rem;
    }

    /* Time Promise */
    .time-promise {
        padding: 2rem 1.5rem;
    }
    
    .time-promise .time {
        font-size: 3rem;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .features,
    .services,
    .packages,
    .why-us,
    .contact {
        padding: 3rem 0;
    }

    /* Grids */
    .features-grid,
    .services-grid,
    .why-grid,
    .contact-methods,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Packages */
    .packages-header h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .package-emoji {
        font-size: 3rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}