body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f1eb;
    color: #4d4037;
}

.custom-navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.logo {
    height: 60px;
}

.nav-link {
    color: #4d4037;
    margin-left: 20px;
    font-weight: 500;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
}

.hero-logo {
    width: 220px;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
}

.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background: #efe4da;
}

.service-card,
.review-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.custom-btn {
    background: #b79d8c;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
}

.custom-btn:hover {
    background: #9e8574;
}

.form-control {
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #d8c5b7;
}

.footer {
    background: #d8c5b7;
    padding: 30px 0;
    color: #4d4037;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-logo {
        width: 160px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}