/* Service Detail Page Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.navbar-nav a {
    text-decoration: none;
    color: #443e36;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: #c4a556;
}

.btn-book {
    background: #c4a556;
    color: white !important;
    padding: 10px 25px;
    border-radius: 5px;
}

.btn-book:hover {
    background: #443e36;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #443e36;
    cursor: pointer;
}

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.service-hero h1 {
    font-size: 2.5rem;
    color: #443e36;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero .lead {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.service-section {
    margin-bottom: 50px;
}

.service-section h2 {
    font-size: 2rem;
    color: #443e36;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-section h3 {
    font-size: 1.5rem;
    color: #443e36;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c4a556;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-cta {
    background: #c4a556;
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 50px 0;
}

.service-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.service-cta .btn {
    background: white;
    color: #c4a556;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.service-cta .btn:hover {
    background: #443e36;
    color: white;
}

.service-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
}

/* Footer */
.footer {
    background: #443e36;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer h5 {
    color: #c4a556;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p,
.footer ul {
    color: #ddd;
    line-height: 1.8;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #c4a556;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-toggler {
        display: block;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-section h2 {
        font-size: 1.75rem;
    }

    .service-cta {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
