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

/* ================================================
   BASE
================================================ */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f8f9fa;
}

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

/* ================================================
   HAMBURGER MENU
================================================ */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.hamburger-btn {
    background: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.hamburger-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #7A8184;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-dropdown {
    position: fixed;
    top: 80px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    padding: 10px;
    display: none;
    z-index: 1000;
    min-width: 180px;
}

.menu-dropdown.active {
    display: block;
}

.menu-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.menu-dropdown a:hover {
    background: #f8f9fa;
    color: #7A8184;
}

.menu-dropdown a.active {
    background: #7A8184;
    color: white;
}

.menu-section {
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 5px;
}

/* ================================================
   HEADER
================================================ */
header {
    background: linear-gradient(135deg, #C9B8A3 0%, #8C8672 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

header .container {
    padding: 0 20px;
}

.logo {
    max-width: 200px;
    margin: 0 auto 30px;
    background: white;
    padding: 20px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

header h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
}

/* ================================================
   SERVICES HEADING (home pages)
================================================ */
.services-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #7A8184;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .services-heading { font-size: 26px; }
}

/* ================================================
   CONTACT CTA SECTION (home + about pages)
================================================ */
.contact-section {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    color: #7A8184;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-section p {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-button {
    display: inline-block;
    background: #7A8184;
    color: white;
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(122, 129, 132, 0.3);
}

.contact-button:hover {
    background: #8C8672;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(140, 134, 114, 0.4);
}

/* ================================================
   FOOTER
================================================ */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 5px 0;
}

.location {
    font-weight: bold;
    color: #C9B8A3;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 10px;
        right: 10px;
    }

    .menu-dropdown {
        top: 70px;
        right: 10px;
        min-width: 160px;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    header h1 {
        font-size: 28px;
    }

    .contact-section h2 {
        font-size: 24px;
    }

    .contact-button {
        padding: 16px 30px;
        font-size: 16px;
    }
}
