:root {
    --blue: #2563eb;
    --pink: #fdb8d0;
    --soft-pink: #fef5f9;
    --white: #ffffff;
    --gray: #f9f9f9;
    --light-gray: #f3f4f6;
    --text: #1f2937;
    --light-text: #4b5563;
}

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

body {
    font-family: 'Inter', 'BC Sans', system-ui, sans-serif;
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 700; color: var(--blue); }

a { color: var(--blue); text-decoration: none; }
a:hover, a:focus { color: #1d4ed8; }

.container { width: min(100% - 2rem, 1200px); margin-inline: auto; }

/* ====================== HEADER & NAV ====================== */
header {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}
header.scrolled { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }

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

/* ——— NEW: Real SVG Logo (replaces text + pink A) ——— */
.logo {
    display: block;
    height: 56px;           /* controls logo height on desktop */
    width: auto;
}

.logo-svg {
    height: 100%;
    width: auto;
    display: block;
}

/* Mobile logo slightly smaller */
@media (max-width: 768px) {
    .logo { height: 48px; }
}

/* Old text + circle logo (hidden now that we use real SVG) */
.logo-img,
.logo span {
    display: none !important;
}

/* Rest of nav stays the same */
.nav-desktop ul { display: flex; gap: 2rem; list-style: none; }
.nav-desktop a { font-weight: 600; position: relative; padding: .5rem 0; }
.nav-desktop a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--pink); transition: width .3s; transform: translateX(-50%); }
.nav-desktop a:hover::after, .nav-desktop a:focus::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem;}
.hamburger span { display: block; height: 3px; background: var(--blue); border-radius: 3px; transition: all .3s; position: absolute; width: 28px; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); top: 8px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

.nav-mobile { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: var(--white); padding: 6rem 2rem 2rem; transition: right .35s ease; box-shadow: -4px 0 15px rgba(0,0,0,.1); z-index: 1000; }
.nav-mobile.open { right: 0; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1.5rem; list-style: none; }
.nav-mobile a { display: block; font-weight: 600; font-size: 1.2rem; padding: .75rem 0; border-bottom: 1px solid #e5e7eb; }

.nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: all .35s; z-index: 999; }
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ====================== HERO WITH REAL IMAGE ====================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/homeimg.png') center center / cover no-repeat;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero .btn {
    background: var(--blue);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero .btn:hover {
    background: #1d4ed8;
    color: var(--soft-pink);
    transform: translateY(-5px);
}

/* ====================== REST OF YOUR STYLES (unchanged) ====================== */
.btn { display: inline-block; background: var(--blue); color: white; padding: .9rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1.1rem; transition: all .3s; box-shadow: 0 4px 6px rgba(37,99,235,.2); cursor: pointer; }
.btn:hover, .btn:focus { background: #1d4ed8; color: var(--soft-pink); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(37,99,235,.3);  }

.placeholder-img {
    background: #e5e7eb;
    border: 3px solid var(--blue);
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    display: block;
    margin: 2rem auto;
    max-width: 800px;
    color: #6b7280;
    font-style: italic;
    text-align: center;
    padding: 0;
    box-shadow: 0 6px 18px rgba(37,99,235,0.06);
}

/* Ensure images using the placeholder class scale nicely */
.placeholder-img img,
img.placeholder-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

section { padding: 4rem 0; opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
section.visible { opacity: 1; transform: translateY(0); }

.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; color: var(--blue); }

.grid-3 { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card { background: var(--light-gray); padding: 2rem; border-radius: 12px; text-align: center; transition: transform .3s, box-shadow .3s; box-shadow: 0 4px 6px rgba(0,0,0,.05); }
.card:hover { transform: translateY(-6px); box-shadow: 0 10px 20px rgba(0,0,0,.1); }
.card ul {
    list-style-position: inside;    /* moves the bullet inside the text flow */
    padding-left: 1.2rem;           /* controls how far the whole line (bullet + text) is indented – adjust to taste */
    margin: 1rem 0;                 /* adds nice spacing above/below the list */
}

.card li {
    margin-bottom: 0.5rem;          /* optional: adds a little space between items */
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; margin-top: 2rem; }
.service-card { background: white; padding: 1.8rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,.05); transition: all .3s; }
.service-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,.1); transform: translateY(-4px); }

.testimonial { background: var(--soft-pink); padding: 2rem; border-radius: 12px; max-width: 700px; margin: 0 auto; font-style: italic; position: relative; }
.testimonial::before { content: '“'; font-size: 5rem; color: var(--pink); position: absolute; top: -10px; left: 20px; opacity: 0.5; }
.testimonial cite { display: block; text-align: right; font-style: normal; font-weight: 600; color: var(--blue); }

.cta-section { padding: 4rem 0; background: var(--soft-pink); text-align: center; }
.cta-section h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--blue); }

.service-item { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.service-item:nth-child(even) { direction: rtl; }
.service-item:nth-child(even) > * { direction: ltr; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
form { display: grid; gap: 1rem; max-width: 600px; margin: auto; }
input, textarea { width: 100%; padding: .9rem; border: 1px solid #d1d5db; border-radius: 8px; font-size: 1rem; transition: border .3s; }
input:focus, textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(253,184,208,.3); }

/* Form feedback messages */
.form-message { max-width: 600px; margin: 1rem 0 1.5rem; padding: 0.9rem 1rem; border-radius: 8px; display: none; font-weight: 600; }
.form-success { display: block; background: #ecfdf5; color: #065f46; border: 1px solid #34d399; }
.form-error { display: block; background: #fff1f2; color: #9f1239; border: 1px solid #fb7185; }
.field-error { border-color: #fb7185 !important; box-shadow: 0 0 0 3px rgba(251,113,133,0.08); }

footer { background: var(--blue); color: white; padding: 2.5rem 0; text-align: center; font-size: .95rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-bottom: 1rem; }
.footer-links a { color: white; font-weight: 500; }
.social-icons a { width: 40px; height: 40px; background: rgba(255,255,255,.2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin: 0 .5rem; }

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .nav-toggle { display: block; position: absolute; top: 50%; right: 1.5rem; transform: translateY(-50%); z-index: 1002; }
    .header-inner { padding: 1rem 1.5rem; position: relative; }
    .hero { min-height: 80vh; }
    .service-item, .service-item:nth-child(even) { grid-template-columns: 1fr; direction: ltr !important; }
    .contact-grid { grid-template-columns: 1fr; }
}

:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
html { scroll-behavior: smooth; }