:root {
    --bg-dark: #212121;
    --card-bg: #333333;
    --orange: #FF5722;
    --orange-hover: #E64A19;
    --white: #FAFAFA;
    --gray: #BDBDBD;
    
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }

/* Header */
.orbit-header { padding: 20px 0; background: rgba(33, 33, 33, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--orange); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.circle-icon { width: 15px; height: 15px; border: 3px solid var(--orange); border-radius: 50%; }
.orange { color: var(--orange); }

.orbit-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.orbit-nav a { font-weight: 600; font-size: 0.95rem; color: var(--gray); text-transform: uppercase; }
.orbit-nav a:hover, .orbit-nav a.active { color: var(--orange); }

.btn-orange { background: var(--orange); color: white !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; transition: 0.3s; }
.btn-orange:hover { background: var(--orange-hover); transform: scale(1.05); }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-toggle span { width: 30px; height: 3px; background: var(--orange); border-radius: 2px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--bg-dark); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 2rem; color: var(--orange); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: white; font-weight: 700; }

/* Hero */
.hero-orbit { height: 75vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, #333 0%, #212121 80%); z-index: -1; }
.hero-content { z-index: 1; width: 100%; max-width: 800px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: var(--gray); margin-bottom: 40px; }

.transfer-widget { background: var(--card-bg); padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-top: 4px solid var(--orange); }
#transferForm { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; flex-wrap: wrap; }
.input-wrap { flex: 1; text-align: left; min-width: 200px; }
.input-wrap label { display: block; font-size: 0.85rem; color: var(--orange); margin-bottom: 5px; font-weight: 600; }
.input-wrap select, .input-wrap input { width: 100%; padding: 12px; background: #444; border: 1px solid #555; color: white; border-radius: 5px; font-family: var(--font-body); }
.btn-search { width: 100%; padding: 15px; background: var(--orange); border: none; font-weight: bold; cursor: pointer; border-radius: 5px; font-size: 1.1rem; color: white; transition: 0.3s; margin-top: 23px; }
.btn-search:hover { background: var(--orange-hover); }

/* Services */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; }
.orange-dot { width: 15px; height: 15px; background: var(--orange); border-radius: 50%; margin: 10px auto; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--card-bg); padding: 30px; border-radius: 10px; text-align: center; transition: 0.3s; border: 1px solid transparent; }
.service-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.service-card.highlight { background: #2a2a2a; border-color: var(--orange); box-shadow: 0 0 20px rgba(255, 87, 34, 0.2); }
.icon-box { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.5rem; }
.price-tag { display: inline-block; background: #444; padding: 5px 15px; border-radius: 20px; margin-top: 15px; font-size: 0.9rem; font-weight: bold; color: var(--orange); }

/* About & Contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-col h1 { font-family: var(--font-head); font-size: 3rem; color: var(--orange); margin-bottom: 20px; }
.features-list { list-style: none; margin-top: 30px; }
.features-list li { margin-bottom: 15px; font-size: 1.1rem; font-weight: 600; }
.img-col img { width: 100%; border-radius: 10px; border: 2px solid var(--orange); }

.contact-panel { display: flex; background: var(--card-bg); border-radius: 15px; overflow: hidden; }
.panel-left { flex: 1; padding: 50px; background: #2a2a2a; }
.panel-left h2 { font-family: var(--font-head); color: var(--orange); margin-bottom: 20px; }
.contact-list { list-style: none; margin-top: 30px; font-size: 1.1rem; }
.contact-list li { margin-bottom: 15px; }
.orbit-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; background: #444; border: 1px solid #555; color: white; border-radius: 5px; font-family: var(--font-body); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.btn-submit { width: 100%; padding: 15px; background: var(--orange); border: none; font-weight: bold; border-radius: 5px; cursor: pointer; color: white; }

/* Testimonials */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: var(--card-bg); padding: 30px; border-radius: 10px; border-top: 4px solid var(--orange); }
.review-box p { font-style: italic; color: #ddd; margin-bottom: 20px; }
.user span { display: block; font-size: 0.8rem; margin-bottom: 5px; }
.user strong { color: var(--orange); }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--card-bg); padding: 50px; border-radius: 10px; }
.legal-content h3 { color: var(--orange); margin-top: 30px; font-family: var(--font-head); }

/* Footer */
.orbit-footer { background: #1a1a1a; padding: 60px 0 20px; margin-top: 80px; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; padding-bottom: 30px; border-bottom: 1px solid #333; }
.brand h4 { font-family: var(--font-head); font-size: 1.5rem; color: var(--orange); margin-bottom: 5px; }
.links a { margin-left: 20px; color: var(--gray); font-weight: 600; }
.links a:hover { color: var(--orange); }
.copyright { text-align: center; padding-top: 20px; font-size: 0.8rem; color: #555; }

/* Cookie Banner */
.cookie-bar { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; padding: 15px 30px; border-radius: 50px; display: none; align-items: center; gap: 20px; z-index: 9999; box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4); font-weight: bold; width: max-content; }
.cookie-bar.active { display: flex; animation: bounceIn 0.5s; }
.cookie-bar button { background: white; color: var(--orange); border: none; padding: 8px 20px; border-radius: 20px; font-weight: bold; cursor: pointer; }

@keyframes bounceIn { from { transform: translate(-50%, 100px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

@media (max-width: 900px) {
    .orbit-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .services-grid, .about-grid, .contact-panel, .reviews-grid { flex-direction: column; grid-template-columns: 1fr; display: flex; }
    .form-row { flex-direction: column; gap: 10px; }
    .cookie-bar { width: 90%; flex-direction: column; text-align: center; border-radius: 15px; }
}