:root {
    --primary: #ffcc00;
    --dark: #1a1a1a;
    --white: #ffffff;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigasyon */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--dark);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=2070');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary);
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-call { background: var(--primary); color: var(--dark); }
.btn-whatsapp-hero { background: #25d366; color: white; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

/* Sections */
section { padding: 80px 10%; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    margin-top: 30px;
}

.features li {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.features i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

/* İletişim */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Harita Kutusu Ayarları */
.map-container {
    width: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #eee; /* Harita yüklenene kadar gri bir kutu görünür */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}
/* Footer */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 40px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    nav { flex-direction: column; gap: 15px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; padding: 0 10%; }
    .contact-grid { grid-template-columns: 1fr; }
    section { padding: 60px 5%; }
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    text-decoration: none;
}
/* İletişim Kartı Tasarımı */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary); /* Sol tarafa sarı bir şerit */
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 800;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

/* İkon Kutusu */
.icon-box {
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.text-box span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 700;
    margin-bottom: 5px;
}

.text-box address, 
.text-box .phone-link {
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: 0.3s;
}

.phone-link:hover {
    color: #e6b800; /* Koyu sarı */
}

.contact-cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-cta p {
    font-weight: 700;
    color: #25d366; /* WhatsApp yeşili veya dikkat çekici bir renk */
    font-size: 0.95rem;
}

/* Mobilde Hizalama */
@media (max-width: 768px) {
    .contact-card {
        padding: 25px;
    }
}
/* İkon Animasyonu */
.features i {
    transition: transform 0.3s ease;
}

.features li:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #ffcc00;
}