:root {
    --primary-pastel: #d1e2d3; /* Sage Green */
    --secondary-pastel: #f1e4d1; /* Soft Cream */
    --bg-soft: #fcfaf7; /* Warm Linen Background */
    --text-main: #3a3a3a;
    --text-muted: #707070;
    --line: rgba(0, 0, 0, 0.08);
    --transition: all 0.4s ease;
    --radius: 12px;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-soft);
    color: var(--text-main);
    line-height: 1.6;
}

.container { width: min(1100px, 90%); margin-inline: auto; }

/* --- Header --- */
.site-header {
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    background: rgba(252, 250, 247, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--line);
}

.header-inner { display: flex; justify-content: space-between; align-items: center; }

.brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.brand-logo { height: 40px; }
.brand-text { height: 32px; }

.site-nav__list { display: flex; list-style: none; gap: 1.5rem; }

.header_button {
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.header_button:hover { color: var(--text-muted); }

/* --- Hero Section --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(rgba(252, 250, 247, 0.6), rgba(252, 250, 247, 0.6)), 
                url("../imgs/backgroundimage.png") center center / cover no-repeat;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero__subtitle {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

.contact-info { font-style: normal; margin-bottom: 1.5rem; color: var(--text-muted); }

.announcement {
    display: inline-block;
    background: var(--primary-pastel);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* --- Content Sections --- */
section { padding: 100px 0; }

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.service-item:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }

.service-item h3 { margin-bottom: 1rem; color: var(--text-main); }

.site-footer {
    padding: 4rem 0; /* Increased padding for a more professional, breathable look */
    background-color: var(--bg-soft);
    border-top: 1px solid var(--line);
    text-align: center; /* This centers the text and small element */
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.site-footer small {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* --- CTA Button --- */
.cta-button {
    background: var(--text-main);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover { background: var(--text-muted); transform: scale(1.05); }

/* --- Modernized Navigation Icon (Hamburger) --- */
.nav-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.nav-toggle__bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 10px;
    transition: var(--transition);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .nav-toggle { display: flex; }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: var(--bg-soft);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        transition: 0.5s ease-in-out;
        padding: 100px 2rem;
    }

    .site-nav.open { right: 0; }

    .site-nav__list {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .header_button { font-size: 1.2rem; }

    /* Animated Hamburger to "X" */
    .nav-toggle.open .nav-toggle__bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav-toggle.open .nav-toggle__bar:nth-child(2) { opacity: 0; }
    .nav-toggle.open .nav-toggle__bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* --- Professional Section Polishing --- */
.service-item {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 3rem 2rem;
    text-align: center;
    /* Subtle depth */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: leading;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Tablet/Phone adjustments for Hero */
@media (max-width: 600px) {
    .hero { padding: 60px 0; min-height: 60vh; }
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.75rem; }
}