:root {
    --primary: #0b3c5d;
    --secondary: #f4a261;
    --danger: #e63946;
    --whatsapp: #25D366;
    --bg: #f4f6f8;
    --text: #333;
    --card: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* HERO */
.hero {
    background: linear-gradient(
        rgba(11, 60, 93, 0.85),
        rgba(11, 60, 93, 0.85)
    ),
    url("https://images.unsplash.com/photo-1606220838315-056192d5e927") center/cover;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* BUTTONS */
.buttons {
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px;
    padding: 14px 22px;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.call { background: var(--danger); }
.whatsapp { background: var(--whatsapp); }
.location { background: var(--secondary); }

/* SECTIONS */
section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 40px 25px;
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 25px;
}

/* SERVICES */
.services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.services li {
    background: var(--bg);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.services li:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
}

/* PRICING */
.pricing p {
    text-align: center;
    font-size: 18px;
}

.pricing strong {
    color: var(--danger);
}

/* CONTACT */
.contact form {
    max-width: 500px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact button {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact button:hover {
    background: #062a41;
}

/* FOOTER */
footer {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 26px;
    }

    .btn {
        width: 90%;
        justify-content: center;
    }
}
/* FIXED BOTTOM BAR */
.fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.fixed-bar a {
    flex: 1;
    padding: 16px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.fixed-call {
    background: #e63946;
}

.fixed-whatsapp {
    background: #25D366;
}

/* MOBILDE GÖRÜNSÜN */
@media (min-width: 768px) {
    .fixed-bar {
        display: none;
    }
}
/* MAP */
.map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    margin-bottom: 20px;
}

.location-btn {
    display: block;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    background: var(--secondary);
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
}
