@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');
:root { --gold: #c5a059; --dark: #0a0a0a; --soft-bg: #fdfdfd; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--soft-bg); color: var(--dark); overflow-x: hidden; }

header { padding: 25px 8%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); }
.logo-img { height: 50px; }
nav a { margin-left: 35px; text-decoration: none; color: #000; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
nav a:hover { color: var(--gold); }

.hero { padding: 100px 8%; display: flex; align-items: center; gap: 60px; min-height: 80vh; background: #fff; }
.hero-content { flex: 1; }
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; font-weight: 800; margin-bottom: 25px; letter-spacing: -2px; }
.hero-content p { font-size: 1.25rem; color: #555; margin-bottom: 40px; max-width: 500px; }
.hero-image { flex: 1; position: relative; }
.hero-image img { width: 100%; border-radius: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-size: 3rem; font-weight: 800; }

.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; padding: 0 8% 100px; }
.service-card { background: #fff; padding: 50px 40px; border-radius: 30px; border: 1px solid #f0f0f0; transition: 0.5s; text-align: center; }
.service-card:hover { transform: translateY(-15px); box-shadow: 0 40px 80px rgba(0,0,0,0.05); border-color: var(--gold); }
.service-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; }

.btn-premium { background: var(--dark); color: #fff; padding: 20px 45px; text-decoration: none; border-radius: 50px; font-weight: 700; display: inline-block; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-premium:hover { transform: scale(1.05); background: #222; }

footer { background: var(--dark); color: #fff; padding: 80px 8%; }
input, select, textarea { width: 100%; padding: 18px; margin-bottom: 15px; border-radius: 15px; border: 1px solid #ddd; background: #fafafa; font-family: inherit; }
