@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --navy: #0a2342; --gold: #c5a059; --wa-green: #25d366; --bg-light: #f8fafd; }

body { font-family: 'Poppins', sans-serif; line-height: 1.8; color: var(--navy); font-size: 22px; background-color: #fff; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--navy); }

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

/* HEADER */
.header { background: #fff; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo img { max-height: 85px; }
.nav-menu { display: flex; list-style: none; gap: 50px; }
.nav-link { text-decoration: none; color: var(--navy); font-weight: 700; font-size: 22px; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 40px; right: 40px; background: var(--wa-green); color: white; width: 80px; height: 80px; border-radius: 50%; text-align: center; font-size: 45px; display: flex; align-items: center; justify-content: center; z-index: 10000; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

/* HERO */
.hero { background: linear-gradient(rgba(10, 35, 66, 0.75), rgba(10, 35, 66, 0.75)), url('img/hero-bg.jpg') center/cover; height: 60vh; display: flex; align-items: center; text-align: center; color: white; margin-top: 110px; }
.hero h1 { font-size: 4.5rem; color: #fff; width: 100%; }

/* ABOUT SECTION - RESİM BURADA */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; padding: 100px 0; align-items: center; }
.about-img img { width: 100%; border-radius: 15px; box-shadow: 20px 20px 0 var(--gold); object-fit: cover; }
.wa-btn-randevu { background: var(--wa-green); color: white; padding: 20px 35px; border-radius: 10px; text-decoration: none; display: inline-flex; align-items: center; gap: 15px; font-weight: 700; margin-top: 30px; font-size: 24px; }

/* GOLDEN VISA NEDİR - ZENGİN İÇERİK */
.visa-info-box { background: var(--bg-light); padding: 100px 0; }
.visa-card-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.visa-card { background: #fff; padding: 40px; border-radius: 15px; border-top: 6px solid var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; }
.visa-card i { font-size: 50px; color: var(--navy); margin-bottom: 20px; }
.visa-card h3 { font-size: 26px; color: var(--gold); margin-bottom: 15px; }

/* FORM */
.form-container { max-width: 850px; margin: 100px auto; background: #fff; padding: 60px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 10px; }
.form-group input, .form-group textarea { width: 100%; padding: 18px; border: 2px solid #ddd; border-radius: 10px; font-size: 20px; }
.btn-send { background: var(--navy); color: white; border: none; padding: 22px; width: 100%; font-size: 26px; font-weight: 700; cursor: pointer; border-radius: 10px; }

/* FOOTER */
.footer { background: var(--navy); color: white; padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.footer-box h4 { color: var(--gold); font-size: 26px; margin-bottom: 20px; }
.footer-link { color: white; text-decoration: none; display: block; margin-bottom: 10px; }
