:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --dark: #0A0A0F;
  --dark-sec: #12121A;
  --dark-card: #1C1C28;
  --white: #FFFFFF;
  --gray: #8A8A9A;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--dark); color: var(--white); line-height: 1.6; overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; height: 75px; display: flex; align-items: center; justify-content: space-between; padding: 0 6%; background: rgba(10, 10, 15, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201, 168, 76, 0.2); z-index: 1000; }
.logo { font-family: var(--font-heading); font-weight: 900; font-size: 1.6rem; letter-spacing: 4px; text-decoration: none; color: var(--white); text-transform: uppercase; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.hero { position: relative; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10, 10, 15, 0.95) 35%, rgba(10, 10, 15, 0.2) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 6%; }
.badge { display: inline-block; background: rgba(201, 168, 76, 0.15); border: 1px solid var(--gold); color: var(--gold); font-size: 0.7rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; margin-bottom: 25px; letter-spacing: 2px; text-transform: uppercase; }
h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 25px; }
h1 em { color: var(--gold); font-style: normal; }
.hero-p { color: var(--gray); font-size: 1.1rem; margin-bottom: 35px; max-width: 600px; }
.btn-gold { background: var(--gold); color: var(--dark); padding: 16px 35px; font-weight: 800; text-transform: uppercase; text-decoration: none; border-radius: 4px; display: inline-block; transition: 0.3s; border:none; cursor:pointer; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 16px 35px; font-weight: 700; text-transform: uppercase; text-decoration: none; border-radius: 4px; display: inline-block; transition: 0.3s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
section { padding: 100px 6%; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; margin-bottom: 15px; letter-spacing: -1px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: var(--dark-card); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; padding: 35px; position: relative; }
.card:hover { border-color: var(--gold); transform: translateY(-10px); }
.card-img { height: 240px; margin: -35px -35px 25px -35px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.process-flow { display: flex; justify-content: space-between; gap: 20px; position: relative; margin-top: 40px; }
.process-flow::before { content: ''; position: absolute; top: 45px; left: 10%; right: 10%; height: 1px; background: rgba(201, 168, 76, 0.2); z-index: 0; }
.process-step { position: relative; z-index: 1; text-align: center; flex: 1; }
.step-num { width: 90px; height: 90px; background: var(--dark-card); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: var(--gold); transition: 0.3s; }
.process-step:hover .step-num { background: var(--gold); color: var(--dark); transform: scale(1.1); box-shadow: 0 0 20px rgba(201, 168, 76, 0.4); }
.form-container { max-width: 900px; margin: 0 auto; background: var(--dark-card); padding: 50px; border-radius: 15px; border: 1px solid rgba(201, 168, 76, 0.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
input, select, textarea { width: 100%; padding: 16px; background: #111118; border: 1px solid #333; color: #fff; border-radius: 5px; font-family: var(--font-body); outline:none; transition:0.3s; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: #16161f; }
.file-label { display: flex; align-items: center; gap: 10px; background: #1a1a24; border: 1px dashed var(--gold); padding: 15px; border-radius: 5px; cursor: pointer; color: var(--gold); margin-bottom: 25px; font-size: 0.9rem; }
.wa-float { position: fixed; bottom: 30px; right: 30px; z-index: 9999; }
.wa-btn { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; text-decoration: none; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); transition: 0.3s; animation: wa-pulse 2s infinite; }
.wa-btn:hover { transform: scale(1.1); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
footer { background: #060608; padding: 80px 6% 30px; border-top: 1px solid rgba(201, 168, 76, 0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-col h4 { margin-bottom: 25px; color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }
.footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--gray); }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } .process-flow { flex-direction: column; gap: 40px; } .process-flow::before { display: none; } h1 { font-size: 3rem; } }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } }