﻿/* GENEL AYARLAR */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Görseldeki koyu lacivert geçişli arka plan */
    background: radial-gradient(circle at center, #1a2a44 0%, #0d1421 100%); 
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 480px;
    width: 100%;
    background: transparent;
    padding: 20px;
    text-align: center;
}

/* HEADER BÖLÜMÜ */
header {
    margin-bottom: 30px;
}

.logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: #ff8c00; /* Görseldeki turuncu tonu */
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.status-badge {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.9rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.sub-text {
    color: #bdc3c7;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* HERO KART (ORTA PANEL) */
.hero-card {
    background: rgba(255, 255, 255, 0.08); /* Yarı şeffaf efekt */
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-card h2 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

/* TURUNCU HEMEN ARA BUTONU */
.call-btn {
    background: linear-gradient(90deg, #ff8c00 0%, #ffae00 100%); /* Turuncu gradyan */
    color: #0d1421;
    text-decoration: none;
    padding: 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff8c00;
}

/* HIZMET SEÇENEKLERİ (GRİ BUTONLAR) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}

.service-item {
    background: rgba(255, 255, 255, 0.12); /* Görseldeki buton rengi */
    padding: 12px 5px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* YENİ EKLENEN DETAY KARTLARI */
.services-details {
    text-align: left;
    margin-top: 25px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #ff8c00; /* Vurgu rengi turuncu */
}

.detail-card h3 {
    color: #ff8c00;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.detail-card p {
    font-size: 0.88rem;
    color: #cfd8dc;
    line-height: 1.5;
}

/* FOOTER */
footer {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #7f8c8d;
    padding-bottom: 20px;
}

/* NABIZ ANİMASYONU */
.pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #0d1421;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}