/* -----------------------------
   GLOBAL STYLES
-------------------------------*/
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    color: #1f3d36;
    background: #fdfdfd;
}

/* COLOR VARIABLES */
:root {
    --pink: #f8d8e8;
    --softpink: #ffeaf4;
    --rose: #ffb6d5;
    --text: #444;
    --primary: #7b255c;
    --white: #ffffff;
}

/* -----------------------------
   HEADER
-------------------------------*/
header {
    background: var(--white);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

header .logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

/* -----------------------------
   MOBILE NAVIGATION
-------------------------------*/
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: var(--white);
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 10px;
        z-index: 999;
    }

    nav.show {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        margin: 8px 0;
        font-size: 18px;
    }

    .hamburger {
        display: block;
    }
}

/* -----------------------------
   SERVICES SECTION
-------------------------------*/
.services-section {
    padding: 40px 20px;
}

.services-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.service-block {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 22px rgba(0,0,0,0.08);
    margin: 30px auto;
    max-width: 900px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-block:hover {
    transform: translateY(-5px);
}

/* IMAGE SIDE */
.service-image {
    flex: 1 1 40%;
    min-width: 250px;
    max-width: 340px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* TEXT SIDE */
.service-text {
    flex: 2 1 60%;
    padding: 40px 32px 24px 32px;
}

.service-heading {
    font-size: 1.3rem;
    background: #8196aa;
    color: white;
    padding: 10px 38px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
    max-width: 80%;
    text-align: justify;
}

/* -----------------------------
   RESPONSIVE SERVICES
-------------------------------*/
@media (max-width: 900px) {
    .service-block {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 160px;
        max-width: 100%;
    }

    .service-text {
        padding: 24px 14px;
    }

    .service-heading {
        margin-bottom: 18px;
    }
}

/* -----------------------------
   FOOTER
-------------------------------*/
.main-footer {
    background: #111;
    color: #eee;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-container h2,
.footer-container h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-middle ul,
.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li,
.footer-right ul li {
    margin-bottom: 10px;
}

.footer-middle a,
.footer-right a {
    color: #eee;
    text-decoration: none;
    transition: 0.2s;
}

.footer-middle a:hover,
.footer-right a:hover {
    color: #ffcc66;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #333;
}
