/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    position: relative;
}

/* Header Stilleri */
.header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo-container {
    margin-bottom: 15px;
}

.logo-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 20px;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px auto;
}

.company-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    text-shadow: 2px 2px 8px rgba(59, 130, 246, 0.3);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.location {
    font-size: 1.2rem;
    color: #60a5fa;
    font-weight: 500;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.3rem;
    color: #93c5fd;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.phone-number {
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Sipariş Butonları */
.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    animation: slideInUp 0.8s ease-out;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.order-btn:hover::before {
    left: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    animation-delay: 0.2s;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.phone-btn {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    animation-delay: 0.4s;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.order-btn i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Bölüm Başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.title-main {
    color: #ffffff;
    font-weight: bold;
}

.title-accent {
    color: #3b82f6;
    font-weight: 800;
}

/* Dış Cephe Fotoğrafı */
.facade-section {
    margin: 40px 0;
}

.facade-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.facade-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.facade-image:hover {
    transform: scale(1.02);
}

.facade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.facade-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.facade-subtitle {
    font-size: 1rem;
    color: #93c5fd;
    font-weight: 400;
    margin: 0;
}

/* Sipariş Süreci */
.order-process {
    margin-bottom: 50px;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    backdrop-filter: blur(10px);
}

.step-title {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-main {
    color: #ffffff;
    font-weight: bold;
}

.step-accent {
    color: #3b82f6;
    font-weight: 800;
}

.step-description {
    color: #b8d4e3;
    line-height: 1.7;
    font-size: 1rem;
}

/* Müşteri Yorumları */
.reviews {
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(0, 180, 216, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #00b4d8;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header h4 {
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 600;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-card p {
    color: #e0f2ff;
    font-style: italic;
}

/* Özellikler */
.features {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(0, 180, 216, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: #b8d4e3;
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.floating-whatsapp i {
    font-size: 1.8rem;
    color: white;
}

/* SEO İçerik Bölümü */
.seo-content {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
}

.content-text p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: 50px;
}

.footer-content p {
    color: #94a3b8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #60a5fa;
}

/* Responsive Tasarım */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
        padding: 30px;
    }
    
    .logo-image {
        width: 240px;
        height: 240px;
        padding: 25px;
    }
    
    .facade-title {
        font-size: 2.2rem;
    }
    
    .facade-subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .order-buttons {
        flex-direction: row;
        gap: 20px;
        margin: 40px 0;
    }
    
    .order-btn {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 800px;
    }
    
    .logo-image {
        width: 280px;
        height: 280px;
        padding: 30px;
    }
    
    .facade-title {
        font-size: 2.5rem;
    }
    
    .facade-subtitle {
        font-size: 1.2rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step,
.review-card,
.feature-card,
.facade-container,
.company-logo {
    /* Animasyonlar kaldırıldı - düz scroll */
}

/* Scroll Bar Özelleştirme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}
