/* Palette: Carbon Black, Neon Pink, Concrete Grey */
:root {
    --black: #121212;
    --dark-grey: #212121;
    --pink: #F50057;
    --white: #FFFFFF;
    --text: #EEEEEE;
    --grey-text: #B0BEC5;
    
    --font-head: 'Teko', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; }

/* Header */
.move-header { background: var(--dark-grey); padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #333; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--white); letter-spacing: 2px; line-height: 1; }
.pink { color: var(--pink); text-shadow: 0 0 10px rgba(245, 0, 87, 0.4); }

.urban-nav a { margin-left: 25px; font-weight: 700; font-size: 0.9rem; color: var(--grey-text); letter-spacing: 1px; }
.urban-nav a:hover, .urban-nav a.active { color: var(--pink); }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 30px; height: 3px; background: var(--pink); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--black); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; border-left: 2px solid var(--pink); }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: var(--white); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2.5rem; margin: 15px 0; color: var(--white); }

@media (max-width: 900px) {
    .urban-nav { display: none; }
    .mobile-toggle { display: flex; }
}

/* Hero */
.hero-move { height: 85vh; background-size: cover; background-position: center; position: relative; }
.overlay-gradient { width: 100%; height: 100%; background: linear-gradient(to right, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.4)); display: flex; align-items: center; }
.hero-content { padding-left: 10%; max-width: 700px; }
.tag { color: var(--pink); font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 3px; display: block; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin-bottom: 20px; text-transform: uppercase; color: var(--white); font-style: italic; }
.hero-content p { font-size: 1.1rem; color: var(--grey-text); margin-bottom: 40px; }

.cta-row { display: flex; gap: 20px; }
.btn-pink { background: var(--pink); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.5rem; font-weight: 500; border: none; cursor: pointer; transition: 0.3s; }
.btn-pink:hover { background: var(--white); color: var(--black); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 13px 40px; font-family: var(--font-head); font-size: 1.5rem; font-weight: 500; transition: 0.3s; }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

/* Concept */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; color: var(--white); }
.pink-line { width: 100px; height: 4px; background: var(--pink); margin: 0 auto; }
.pink-line.left { margin: 20px 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.move-card { background: var(--dark-grey); padding: 40px 20px; text-align: center; border: 1px solid #333; transition: 0.3s; }
.move-card:hover { border-color: var(--pink); transform: translateY(-10px); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.move-card h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--pink); margin-bottom: 10px; }

/* Portfolio Strip */
.portfolio-strip { background: var(--dark-grey); padding: 50px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; margin-top: 50px; }
.p-flex { display: flex; justify-content: space-between; align-items: center; }
.p-text h3 { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); margin-bottom: 5px; }
.btn-white { background: var(--white); color: var(--black); padding: 10px 30px; font-family: var(--font-head); font-size: 1.3rem; border-radius: 2px; }

/* Service Layout */
.service-layout { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.menu-sidebar h3 { font-family: var(--font-head); font-size: 2rem; color: var(--white); border-bottom: 2px solid var(--pink); margin-bottom: 20px; }
.menu-sidebar ul { list-style: none; padding: 0; }
.menu-sidebar li { padding: 15px 0; color: var(--grey-text); cursor: pointer; font-size: 1rem; border-bottom: 1px solid #333; }
.menu-sidebar li:hover, .menu-sidebar li.active { color: var(--pink); padding-left: 10px; transition: 0.3s; }

.service-list { display: grid; gap: 40px; }
.srv-card { display: flex; gap: 30px; background: var(--dark-grey); border: 1px solid #333; align-items: center; }
.srv-img { width: 300px; height: 250px; flex-shrink: 0; }
.srv-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.srv-info { padding: 30px; }
.srv-info h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 10px; }
.book-link { color: var(--pink); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; margin-top: 15px; display: inline-block; }

/* Academy Block */
.academy-block { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.text-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1; margin-bottom: 20px; }
.course-list { margin-top: 40px; display: grid; gap: 20px; }
.course-item { background: #1a1a1a; padding: 20px; border-left: 3px solid var(--pink); }
.course-item h3 { font-family: var(--font-head); color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
.course-item span { color: var(--pink); font-size: 0.8rem; font-weight: 700; }
.img-content img { border: 5px solid #222; }

/* Contact */
.booking-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--dark-grey); padding: 50px; border: 1px solid #333; }
.info-card h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--pink); }
.contact-data { margin-top: 30px; font-weight: 600; color: var(--grey-text); }

.urban-form .form-group { margin-bottom: 20px; }
.urban-form label { display: block; color: var(--pink); font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 5px; }
.urban-form input, .urban-form select, .urban-form textarea { width: 100%; background: var(--black); border: 1px solid #444; color: var(--white); padding: 15px; font-family: var(--font-body); }
.urban-form input:focus { border-color: var(--pink); outline: none; }
.submit-btn { width: 100%; background: var(--pink); color: var(--white); padding: 15px; font-family: var(--font-head); font-size: 1.5rem; border: none; cursor: pointer; }
.submit-btn:hover { background: var(--white); color: var(--black); }

/* Legal */
.legal-box { max-width: 800px; margin: 0 auto; background: var(--dark-grey); padding: 50px; border: 1px solid #333; }
.legal-box h1 { font-family: var(--font-head); font-size: 3rem; }
.legal-box h3 { color: var(--pink); margin-top: 30px; font-family: var(--font-head); font-size: 1.8rem; }

/* Footer */
.move-footer { background: var(--black); border-top: 2px solid var(--dark-grey); padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding-bottom: 30px; margin-bottom: 20px; }
.f-info h4 { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin: 0; }
.f-links a { color: var(--grey-text); margin-left: 20px; font-family: var(--font-head); font-size: 1.2rem; }
.f-links a:hover { color: var(--pink); }
.copyright { text-align: center; color: #444; font-size: 0.9rem; }

/* Cookie */
.cookie-box { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--pink); padding: 15px; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 3000; display: none; }
.cookie-box.active { display: flex; }
.cookie-box p { color: var(--white); font-weight: 700; margin: 0; }
.cookie-box button { background: var(--black); color: var(--white); border: none; padding: 5px 20px; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .grid-3, .service-layout, .booking-grid, .p-flex, .srv-card, .academy-block { grid-template-columns: 1fr; }
    .srv-card { flex-direction: column; }
    .srv-img { width: 100%; }
    .p-flex { text-align: center; gap: 20px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}