/* ===== Global Reset & Font ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdf8f4;
    color: #4a3b32;
    line-height: 1.6;
}

/* ===== Header & Navigation ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a3b32;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4a3b32;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c59a6f;
}

/* ===== Hero Section ===== */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn {
    background: #c59a6f;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn:hover {
    background: #a87c54;
    transform: translateY(-2px);
}

/* ===== Services Grid ===== */
.services {
    padding: 80px 5%;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #4a3b32;
}

.section-subtitle {
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #7a6a5f;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0e6de;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #c59a6f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5d5c4;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f9f5f0;
    font-size: 1.05rem;
}

.service-card ul li span {
    font-weight: 700;
    color: #4a3b32;
}

/* ===== Contact Section ===== */
.contact {
    background: #f9f5f0;
    padding: 80px 5%;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    color: #c59a6f;
}

.contact-info a {
    color: #4a3b32;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== Footer ===== */
footer {
    background: #4a3b32;
    color: #ddd;
    text-align: center;
    padding: 25px;
    font-size: 0.95rem;
}

footer a {
    color: #c59a6f;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .nav-links {
        gap: 15px;
    }
    .logo a {
        font-size: 1.4rem;
    }
}