:root {
    --bg-dark: #111111;
    --bg-light: #f5f5f5;
    --text-dark: #333333;
    --text-light: #ffffff;
    --primary-red: #e63946;
    --primary-red-hover: #c1121f;
    --gray: #666666;
    --font-heading: 'Roboto Condensed', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }

h1, h2, h3, h4 { font-family: var(--font-heading); text-transform: uppercase; font-weight: 700; }
h2 { font-size: 2.5rem; }

/* Buttons */
.btn {
    display: inline-block; padding: 1rem 2rem; text-decoration: none; font-family: var(--font-heading);
    text-transform: uppercase; font-weight: 700; letter-spacing: 1px; border: none; cursor: pointer;
    transition: all 0.3s ease; text-align: center;
}
.btn-primary { background-color: var(--primary-red); color: white; }
.btn-primary:hover { background-color: var(--primary-red-hover); }
.btn-outline { background-color: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background-color: white; color: var(--bg-dark); }
.btn-block { display: block; width: 100%; }

/* Title styling */
.section-title { text-align: center; margin-bottom: 3rem; }
.title-line { height: 4px; width: 60px; background-color: var(--primary-red); margin: 0.5rem auto 0; }
.title-line.left { margin: 0.5rem 0 1.5rem 0; }

/* Top Bar */
.top-bar { background-color: var(--bg-dark); color: #ccc; font-size: 0.85rem; padding: 0.5rem 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar i { color: var(--primary-red); margin-right: 0.5rem; }
.contact-info span { margin-right: 1.5rem; }

/* Navbar */
.navbar { background-color: white; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { color: var(--primary-red); }
.logo-text { color: var(--bg-dark); }
.highlight { color: var(--primary-red); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-family: var(--font-heading); text-transform: uppercase; font-weight: 700; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-red); }

/* Hero */
.hero {
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1920&q=80') center/cover;
    height: 600px; display: flex; align-items: center; color: white;
}
.hero-text { max-width: 700px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; color: #ccc; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; }
.trust-badges { display: flex; gap: 2rem; }
.badge { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: #ddd; }
.badge i { color: var(--primary-red); font-size: 1.5rem; }

/* Services */
.services { padding: 5rem 0; background-color: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.service-box { background: white; padding: 2.5rem 2rem; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-bottom: 4px solid var(--primary-red); transition: transform 0.3s; }
.service-box:hover { transform: translateY(-5px); }
.icon-wrapper { width: 80px; height: 80px; background-color: var(--bg-dark); color: var(--primary-red); font-size: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 1.5rem; }
.service-box h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.service-box p { color: var(--gray); font-size: 0.95rem; }

/* About */
.about { padding: 5rem 0; background-color: white; }
.about-container { display: flex; gap: 4rem; align-items: center; }
.about-image { flex: 1; position: relative; }
.about-image img { width: 100%; height: auto; border: 10px solid var(--bg-light); }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background-color: var(--primary-red); color: white; width: 150px; height: 150px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 10px solid white; }
.experience-badge .num { font-size: 2.5rem; font-weight: 700; font-family: var(--font-heading); line-height: 1; }
.experience-badge .text { text-transform: uppercase; font-family: var(--font-heading); text-align: center; font-size: 0.9rem; font-weight: 700; }
.about-text { flex: 1; }
.about-text p { color: var(--gray); margin-bottom: 2rem; font-size: 1.05rem; }
.check-list { list-style: none; }
.check-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 1rem; font-weight: 700; }
.check-list i { color: var(--primary-red); font-size: 1.2rem; margin-top: 0.2rem; }

/* Booking */
.booking { padding: 5rem 0; background: url('https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?auto=format&fit=crop&w=1920&q=80') center/cover fixed; position: relative; }
.booking::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(17, 17, 17, 0.9); }
.booking-container { position: relative; z-index: 1; display: flex; justify-content: flex-end; }
.booking-form-area { background-color: white; padding: 3rem; width: 100%; max-width: 600px; border-top: 5px solid var(--primary-red); }
.booking-form-area h2 { color: var(--bg-dark); margin-bottom: 0.5rem; }
.booking-form-area p { color: var(--gray); margin-bottom: 2rem; }
.form-row { display: flex; gap: 1rem; margin-bottom: 1rem; }
.form input, .form textarea { width: 100%; padding: 1rem; border: 1px solid #ddd; background: #f9f9f9; font-family: var(--font-body); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--primary-red); }
.form textarea { margin-bottom: 1rem; }

/* Footer */
footer { background-color: var(--bg-dark); color: white; padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h3 { margin-bottom: 1.5rem; color: white; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a { color: #aaa; text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary-red); }
.footer-col p { color: #aaa; margin-bottom: 0.8rem; }
.footer-col i { color: var(--primary-red); width: 20px; }
.footer-bottom { background-color: #0a0a0a; padding: 1.5rem 0; color: #666; font-size: 0.9rem; }

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links, .navbar .btn { display: none; }
    .hero h1 { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .about-container { flex-direction: column; }
    .experience-badge { bottom: 10px; right: 10px; width: 100px; height: 100px; border-width: 5px; }
    .experience-badge .num { font-size: 1.8rem; }
    .experience-badge .text { font-size: 0.7rem; }
    .form-row { flex-direction: column; }
}
