/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
    --bg-body: #0a0a0b;
    --bg-card: #141416;
    --bg-card-hover: #1c1c1f;
    --primary: #E50914; /* Premium Red */
    --primary-hover: #ff1f2b;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border: #27272a;
    --glass: rgba(20, 20, 22, 0.7);
    --blur: blur(12px);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --radius: 12px;
    --container: 1240px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex; 
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3); }
.btn:disabled { background: #333; cursor: not-allowed; box-shadow: none; transform: none; }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* Header (Premium Glass) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo span { color: var(--primary); }

.nav-menu { display: flex; gap: 40px; align-items: center; }
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Mobile Menu Toggle */
.hamburger { display: none; font-size: 24px; cursor: pointer; color: #fff; }

/* Sections */
section { padding: 100px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title { font-size: 42px; margin-bottom: 15px; }
.section-subtitle { color: var(--text-muted); font-size: 16px; }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1595240292728-662580527376?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: var(--header-height);
}

.hero-content { max-width: 700px; }
.hero h1 { font-size: 56px; margin-bottom: 20px; line-height: 1.1; text-transform: uppercase; }
.hero p { font-size: 18px; color: #d1d5db; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 20px; margin-bottom: 30px; }
.badge { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.badge i { color: var(--primary); }

/* Services Grid (Complex) */
.services-category { margin-bottom: 80px; }
.cat-title { font-size: 28px; margin-bottom: 30px; border-left: 4px solid var(--primary); padding-left: 20px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.service-card h4 { font-size: 18px; margin-bottom: 5px; }
.service-card p { font-size: 14px; color: var(--text-muted); }

/* Pricing Table */
.price-container { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 20px; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { background: #1a1a1c; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; color: var(--text-muted); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover { background: rgba(255,255,255,0.02); }
.price-highlight { color: var(--primary); font-weight: 700; }

/* Booking System UI */
.booking-app {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: var(--shadow);
}

.booking-step { margin-bottom: 40px; animation: fadeIn 0.5s ease; }
.step-title { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.step-number { width: 30px; height: 30px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: bold; }

/* Date Picker */
.date-slider { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.date-card {
    min-width: 90px;
    background: #1e1e22;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}
.date-card:hover { background: #2a2a30; }
.date-card.selected { background: var(--primary); border-color: var(--primary); }
.date-day { font-size: 14px; color: rgba(255,255,255,0.7); }
.date-num { font-size: 24px; font-weight: 700; display: block; margin-top: 5px; }

/* Time Slots */
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 10px; }
.time-slot {
    padding: 12px;
    background: #1e1e22;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.time-slot:hover:not(.disabled) { border-color: #fff; }
.time-slot.selected { background: #fff; color: #000; border-color: #fff; font-weight: 600; }
.time-slot.disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Form inputs */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.input-field {
    width: 100%;
    padding: 15px;
    background: #0a0a0b;
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}
.input-field:focus { border-color: var(--primary); }

/* Contacts Page Grid */
.contacts-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info-card { background: var(--bg-card); padding: 40px; border-radius: var(--radius); height: 100%; }
.contact-item { margin-bottom: 30px; display: flex; gap: 20px; }
.contact-icon { width: 50px; height: 50px; background: rgba(229, 9, 20, 0.1); color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.map-placeholder { width: 100%; height: 100%; min-height: 500px; background: #1c1c1f; border-radius: var(--radius); position: relative; overflow: hidden; }

/* Footer */
footer { background: #050505; border-top: 1px solid #1a1a1a; padding: 60px 0 30px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.socials a { width: 40px; height: 40px; background: #1a1a1a; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 10px; color: #fff; }
.socials a:hover { background: var(--primary); }
.copyright { text-align: center; font-size: 13px; color: #555; padding-top: 30px; border-top: 1px solid #111; }

/* Animation */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .contacts-layout { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: #111; flex-direction: column; padding: 100px 40px;
        transition: 0.4s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .hamburger { display: block; z-index: 1001; }
    .hero h1 { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .price-container { overflow-x: auto; }
    .price-table { min-width: 600px; }
}
