/* ============================
   GOD'S ZION — STYLES
   Warm, nurturing, women/baby friendly
   ============================ */

:root {
    --pink: #e8a0bf;
    --pink-light: #fce4ec;
    --pink-deep: #c2185b;
    --cream: #fdf6f0;
    --warm-white: #fffaf5;
    --peach: #ffd6c0;
    --gold: #d4a574;
    --gold-dark: #b8860b;
    --text: #3e2723;
    --text-light: #6d4c41;
    --text-muted: #8d6e63;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(62, 39, 35, 0.08);
    --shadow-lg: 0 10px 40px rgba(62, 39, 35, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.3;
}

a {
    color: var(--pink-deep);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink-deep);
    margin-bottom: 12px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

.highlight {
    color: var(--pink-deep);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--pink-deep);
    color: var(--white);
    border-color: var(--pink-deep);
}

.btn-primary:hover {
    background: #a11445;
    border-color: #a11445;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--pink-deep);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========== NAVIGATION ========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 160, 191, 0.15);
    transition: var(--transition);
}

#navbar.scrolled {
    box-shadow: 0 2px 30px rgba(62, 39, 35, 0.1);
    background: rgba(255, 250, 245, 0.99);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pink-deep);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.logo i {
    font-size: 1.5rem;
    color: var(--pink-deep);
}

.logo:hover {
    color: var(--gold-dark);
}

.logo:hover i {
    color: var(--gold-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-light);
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.2px;
    position: relative;
}

.nav-links a:hover {
    color: var(--pink-deep);
    background: var(--pink-light);
}

.nav-links a.active-link {
    color: var(--pink-deep);
    background: var(--pink-light);
}

.nav-cta {
    background: var(--pink-deep) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    box-shadow: 0 3px 12px rgba(194, 24, 91, 0.25);
}

.nav-cta:hover {
    background: #a11445 !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(194, 24, 91, 0.35) !important;
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/p2.png') center/cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.75), rgba(62, 39, 35, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

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

.hero h1 span {
    font-size: 1.8rem;
    font-weight: 400;
    display: block;
    margin-top: 8px;
    opacity: 0.9;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ========== ABOUT ========== */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-1 {
    width: 85%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-img-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: var(--radius);
    border: 5px solid var(--cream);
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--pink-light);
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 1.8rem;
    color: var(--pink-deep);
    margin-bottom: 8px;
    display: block;
}

.stat strong {
    font-size: 1.3rem;
    display: block;
    color: var(--text);
}

.stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== SERVICES ========== */
.services {
    background: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(232, 160, 191, 0.15);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), var(--peach));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--pink-deep);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== SERVICES BANNER ========== */
.services-banner {
    padding: 20px 0;
    background: var(--pink-light);
}

.services-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sb-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ========== DIRECTOR ========== */
.director {
    background: var(--cream);
}

.director-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.director-photo-wrap {
    position: relative;
}

.director-photo {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.director-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-deep);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

.director-badge i {
    margin-right: 6px;
}

.director-text h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.director-title {
    color: var(--pink-deep);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.director-title i {
    margin-right: 6px;
}

.director-text p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.director-text blockquote {
    margin-top: 24px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--pink-light), var(--peach));
    border-left: 4px solid var(--pink-deep);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text);
}

.director-text blockquote i {
    color: var(--pink-deep);
    margin-right: 8px;
    font-size: 1rem;
}

/* ========== LAB TESTS ========== */
.lab {
    background: var(--warm-white);
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.lab-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(232, 160, 191, 0.1);
}

.lab-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lab-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lab-card-body {
    padding: 24px;
}

.lab-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.lab-card-body h3 i {
    color: var(--pink-deep);
    margin-right: 8px;
}

.lab-card-body p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
}

.lab-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--pink-light), var(--peach));
    border-radius: var(--radius);
}

.lab-cta p {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.lab-cta p i {
    color: var(--pink-deep);
    margin-right: 8px;
}

/* ========== CONTACT ========== */
.contact {
    background: var(--cream);
    padding-top: 0;
}

.contact-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.contact-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.8), rgba(62, 39, 35, 0.75));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 24px;
}

.contact-banner-overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-banner-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-top: 60px;
}

.contact-info h3,
.contact-form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--text);
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), var(--peach));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-deep);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: var(--text);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--pink-deep);
}

/* ========== CONTACT FORM ========== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(232, 160, 191, 0.3);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink-deep);
    box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.footer-brand h3 i {
    color: var(--pink);
    margin-right: 8px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--pink);
    font-style: italic;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--pink);
    margin-right: 8px;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 992px) {
    .about-grid,
    .director-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .director-grid {
        text-align: center;
    }

    .director-photo-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .director-text blockquote {
        text-align: left;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 768px) {
    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-container {
        height: 64px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.3rem;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 250, 245, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 6px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 20px;
        width: 100%;
        text-align: center;
        font-size: 1rem;
        border-radius: var(--radius-sm);
        color: var(--text);
    }

    .nav-links a:hover,
    .nav-links a.active-link {
        background: var(--pink-light);
    }

    .nav-cta {
        margin-top: 12px;
        padding: 14px 22px !important;
    }

    /* Hero */
    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 1.2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-tag {
        font-size: 0.78rem;
        padding: 8px 18px;
    }

    /* Sections */
    .section {
        padding: 56px 0;
    }

    .container {
        padding: 0 18px;
    }

    .section-header h2,
    .about-text h2,
    .director-text h2 {
        font-size: 1.6rem;
    }

    .section-header.center {
        margin-bottom: 36px;
    }

    /* About */
    .about-img-2 {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -40px;
        margin-left: auto;
        width: 65%;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .services-banner-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sb-img {
        height: 180px;
    }

    /* Lab */
    .lab-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lab-card-img {
        height: 170px;
    }

    /* Contact */
    .contact-banner {
        height: 220px;
    }

    .contact-banner-overlay h2 {
        font-size: 1.5rem;
    }

    .contact-grid {
        padding-top: 40px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer {
        padding: 48px 0 24px;
    }
}

/* ========== RESPONSIVE — SMALL PHONE ========== */
@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h1 span {
        font-size: 1.05rem;
    }

    .hero-sub {
        font-size: 0.92rem;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.88rem;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 7px 14px;
    }

    .section {
        padding: 44px 0;
    }

    .section-header h2,
    .about-text h2,
    .director-text h2 {
        font-size: 1.4rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .director-text blockquote {
        padding: 16px 20px;
        font-size: 0.98rem;
    }

    .contact-banner {
        height: 180px;
    }

    .contact-banner-overlay h2 {
        font-size: 1.3rem;
    }

    .lab-cta {
        padding: 24px 18px;
    }

    .lab-cta p {
        font-size: 0.95rem;
    }
}