/* ============================================
   NURSIFY AESTHETICS - Main Stylesheet
   Modular CSS for all page sections
   ============================================ */

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

/* Hide WordPress admin bar and default theme elements */
#wpadminbar { display: none !important; }
.site-header,
.wp-site-blocks > header,
.site-footer,
.wp-site-blocks > footer { display: none !important; }

/* ============================================
   SHARED / UTILITY
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #ff69b4;
    border: 2px solid #ff69b4;
}

.btn-secondary:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.nursify-header {
    background: white;
    height: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.header-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.1);
    position: relative;
    z-index: 1000;
}

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

.nursify-logo-heading {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 50%, #ffc0cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nursify-logo-img {
    height: 100px;
    width: auto;
    max-width: 250px;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.logo-container {
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.logo-container:hover .nursify-logo-heading {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.header-section a {
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.header-section ul,
.header-section ul li { list-style: none !important; list-style-type: none !important; }
.header-section ul li::before { display: none !important; content: none !important; }

.nursify-nav-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-button {
    display: inline-block;
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.nav-button:hover,
.nav-button:focus {
    color: #ff69b4 !important;
    background: rgba(255, 105, 180, 0.05) !important;
    text-decoration: none !important;
}

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-chevron {
    font-size: 12px;
    transition: transform 0.25s ease;
    display: inline-block;
}

.nav-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    list-style: none;
    padding: 8px 0;
    min-width: 240px;
    z-index: 9999;
    border: 1px solid rgba(255,105,180,0.1);
}

/* small triangle pointer */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
    animation: dropFade 0.2s ease;
}

@keyframes dropFade {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none !important;
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    color: #ff69b4 !important;
    background: rgba(255,105,180,0.05);
    padding-left: 26px;
}

.dropdown-divider {
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
    padding-top: 4px;
}

.dropdown-divider a {
    color: #ff69b4 !important;
    font-weight: 600 !important;
}

/* Wide dropdown for blog (longer titles) */
.nav-dropdown-menu--wide {
    min-width: 300px;
    left: auto;
    right: 0;
    transform: none;
}

.nav-dropdown-menu--wide::before {
    left: auto;
    right: 30px;
    transform: none;
}

.nav-dropdown.open .nav-dropdown-menu--wide {
    animation: dropFadeRight 0.2s ease;
}

@keyframes dropFadeRight {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* City label inside concierge dropdown */
.dropdown-city-label {
    padding: 8px 20px 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff69b4;
    pointer-events: none;
}

/* Indented service links under city labels */
.nav-dropdown-menu li a[href*="-albuquerque/"],
.nav-dropdown-menu li a[href*="-rio-rancho/"],
.nav-dropdown-menu li a[href*="-santa-fe/"],
.nav-dropdown-menu li a[href*="-corrales/"] {
    font-size: 0.82rem;
    color: #888;
    padding-left: 28px;
}
.nav-dropdown-menu li a[href*="-albuquerque/"]:hover,
.nav-dropdown-menu li a[href*="-rio-rancho/"]:hover,
.nav-dropdown-menu li a[href*="-santa-fe/"]:hover,
.nav-dropdown-menu li a[href*="-corrales/"]:hover {
    color: #ff69b4;
}

/* ── CONCIERGE CITY ACCORDION ─────────────── */
.nav-city-accordion { list-style: none; }

.nav-city-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    transition: color 0.2s;
    gap: 8px;
}
.nav-city-toggle:hover { color: #ff69b4; }
.nav-city-toggle[aria-expanded="true"] { color: #ff69b4; }

.nav-city-chevron {
    font-size: 0.6rem;
    color: #ff69b4;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.nav-city-toggle[aria-expanded="true"] .nav-city-chevron {
    transform: rotate(180deg);
}

.nav-city-services {
    list-style: none;
    padding: 0 0 6px 0;
    margin: 0;
    background: rgba(255,105,180,0.04);
    border-left: 2px solid rgba(255,105,180,0.2);
    margin: 0 12px 4px 20px;
    border-radius: 0 0 6px 6px;
}
.nav-city-services[hidden] { display: none; }

.nav-city-services li a {
    display: block;
    padding: 7px 16px;
    font-size: 0.82rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.15s;
}
.nav-city-services li a:hover {
    color: #ff69b4;
    padding-left: 20px;
}
.nav-city-overview {
    font-weight: 600;
    color: #444 !important;
    border-bottom: 1px solid rgba(255,105,180,0.1);
    margin-bottom: 2px;
}
.nav-mega-wrapper { position: relative; }

.nav-mega-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.14);
    padding: 28px;
    min-width: 560px;
    z-index: 9999;
    border-top: 3px solid #ff69b4;
    animation: dropFade 0.2s ease;
}

.nav-mega-wrapper.open .nav-mega-menu { display: block; }

.nav-mega-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.nav-mega-col { display: flex; flex-direction: column; gap: 18px; }

.nav-mega-service { }

.nav-mega-service-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,105,180,0.15);
    transition: color 0.2s;
}
.nav-mega-service-name:hover { color: #ff69b4; }

.nav-mega-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
}

.nav-mega-cities a {
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    padding: 2px 0;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-mega-cities a:hover { color: #ff69b4; }

.nav-mega-cta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,105,180,0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nav-mega-cta a {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ff69b4;
    text-decoration: none;
    transition: opacity 0.2s;
}
.nav-mega-cta a:hover { opacity: 0.75; }

/* Mobile mega menu */
@media (max-width: 900px) {
    .nav-mega-menu {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 16px;
        border-top: none;
        border-left: 3px solid #ff69b4;
        animation: none;
    }
    .nav-mega-inner { grid-template-columns: 1fr; gap: 14px; }
    .nav-mega-cities { gap: 4px 14px; }
}

/* Hamburger button   hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ff69b4;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   BLOG POST PAGE STYLES
   ============================================ */
.blog-page { background: #fff; }

.blog-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.blog-wrap .bp-breadcrumb {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 25px;
}
.blog-wrap .bp-breadcrumb a { color: #ff69b4; text-decoration: none; }
.blog-wrap .bp-breadcrumb a:hover { text-decoration: underline; }

.blog-wrap h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    line-height: 1.25;
    margin-bottom: 16px;
}

.bp-meta {
    font-size: 0.88rem;
    color: #999;
    margin-bottom: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bp-meta span { display: flex; align-items: center; gap: 4px; }

.bp-hero-img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.bp-body { color: #444; font-size: 1.05rem; line-height: 1.85; }
.bp-body h2 { font-size: 1.55rem; color: #222; margin: 40px 0 14px; font-weight: 700; }
.bp-body h3 { font-size: 1.2rem; color: #333; margin: 28px 0 10px; font-weight: 600; }
.bp-body p  { margin-bottom: 20px; }

.bp-body ul, .bp-body ol {
    margin: 0 0 20px 0;
    padding-left: 24px;
}
.bp-body li { margin-bottom: 8px; }

.bp-body a { color: #ff69b4; text-decoration: underline; }
.bp-body a:hover { color: #e05090; }

.bp-callout {
    background: linear-gradient(135deg, #fff5f8, #ffe4e1);
    border-left: 4px solid #ff69b4;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 30px 0;
    font-size: 1rem;
    color: #555;
}

.bp-callout strong { color: #ff69b4; }

.bp-cta-box {
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    color: white;
}

.bp-cta-box h3 { color: white; font-size: 1.4rem; margin-bottom: 10px; }
.bp-cta-box p  { color: rgba(255,255,255,0.9); margin-bottom: 20px; }

.bp-cta-box .btn-white {
    background: white;
    color: #ff69b4;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.bp-cta-box .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.bp-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f9f9f9;
    border-radius: 14px;
    padding: 20px;
    margin-top: 50px;
}

.bp-author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bp-author-info h4 { font-size: 1rem; color: #333; margin-bottom: 4px; }
.bp-author-info p  { font-size: 0.88rem; color: #777; margin: 0; line-height: 1.5; }

.bp-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.bp-related h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
}

.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.bp-related-card {
    background: linear-gradient(135deg, #fff5f8, #ffe4e1);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: block;
}

.bp-related-card:hover { transform: translateY(-3px); }
.bp-related-card h3 { font-size: 0.95rem; color: #333; margin-bottom: 6px; font-weight: 600; }
.bp-related-card p  { font-size: 0.82rem; color: #888; margin: 0; }

/* ============================================
   CONCIERGE CITY PAGE STYLES
   ============================================ */
.city-page { background: #fff; }

.city-hero {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4e1 100%);
    padding: 60px 20px;
    text-align: center;
}

.city-hero h1 {
    font-size: 2.8rem;
    font-weight: 300;
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.city-hero p {
    font-size: 1.15rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.city-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.city-service-card {
    background: linear-gradient(135deg, #fff5f8, #ffe4e1);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255,105,180,0.1);
}

.city-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255,105,180,0.15);
}

.city-service-card .csc-icon { font-size: 2rem; margin-bottom: 12px; }
.city-service-card h3 { font-size: 1.1rem; color: #333; margin-bottom: 8px; font-weight: 600; }
.city-service-card p  { font-size: 0.9rem; color: #666; margin: 0; line-height: 1.6; }

.city-how-it-works {
    background: linear-gradient(135deg, #fff5f8, #ffe4e1);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.city-how-it-works h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.city-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.city-step { text-align: center; }

.city-step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.city-step h3 { font-size: 1rem; color: #333; margin-bottom: 6px; }
.city-step p  { font-size: 0.88rem; color: #666; margin: 0; }

.city-faq { margin-top: 50px; }
.city-faq h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .blog-wrap h1 { font-size: 1.8rem; }
    .city-hero h1 { font-size: 2rem; }
    .nav-hamburger { display: flex; }
    .nursify-nav-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 10px 0;
    }
    .nursify-nav-buttons.nav-open { display: flex; }
    .nursify-nav { flex-wrap: wrap; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 12px 16px; }
    .nav-dropdown-menu,
    .nav-dropdown-menu--wide {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 8px;
        margin: 4px 0 8px;
        min-width: 100%;
        right: auto;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown.open .nav-dropdown-menu { animation: none; }
    .nav-dropdown.open .nav-dropdown-menu--wide { animation: none; }
    .nursify-cta-button { display: none; }
}


/* ============================================
   CTA BUTTON
   ============================================ */
.nursify-cta-button {
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.nursify-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    color: white;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4e1 50%, #fff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 50%, #ffc0cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content h1 strong { font-weight: 700; }

.hero-content .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.hero-feature { display: flex; align-items: center; gap: 12px; }

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.hero-feature-text { font-size: 0.95rem; color: #555; font-weight: 500; }

.hero-buttons { display: flex; gap: 20px; margin-top: 40px; }

.hero-image {
    position: relative;
    height: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   TEAM
   ============================================ */
.team {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4e1 100%);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover { transform: translateY(-5px); }

.team-photo {
    height: 400px;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    background-size: cover;
    background-position: center;
}

.team-info { padding: 25px; text-align: center; }
.team-info h4 { font-size: 1.3rem; margin-bottom: 10px; color: #333; font-weight: 400; }
.team-info .role { color: #ff69b4; font-weight: 600; margin-bottom: 15px; }

/* ============================================
   INSTAGRAM / PHOTO GRID
   ============================================ */
.instagram-photo-grid {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.instagram-photo-grid h2 { font-size: 2rem; margin-bottom: 10px; }

.insta-subtext { color: #666; margin-bottom: 35px; font-size: 1.1rem; }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.insta-grid img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 80px 20px; background: white; }

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.service-block {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4e1 100%);
    overflow: hidden;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 600px 1fr;
    transition: all 0.4s ease;
    width: 100%;
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.service-block:nth-child(even),
.service-block.image-right {
    grid-template-columns: 1fr 450px;
}

.service-block:nth-child(even) .service-image,
.service-block:nth-child(even) .service-image2,
.service-block.image-right .service-image,
.service-block.image-right .service-image2 { order: 2; }

.service-image {
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    height: 400px;
    background-size: contain;
    background-position: center;
    position: relative;
}

.service-image2 {
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 182, 193, 0.2) 100%);
}

.service-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 { font-size: 2rem; color: #333; margin-bottom: 20px; }

.service-content .service-description,
.service-content .service-description2 {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features { margin: 5px 0; }
.service-features2 { margin: 10px 0; }
.service-features ul { list-style: none; padding: 0; }

.service-features li {
    color: #666;
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-pricing {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid #ff69b4;
}

.service-pricing .price-label { font-size: 1rem; color: #888; margin-bottom: 5px; }

.service-pricing .price {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-simple {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-item { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 10px; }
.footer-item h3 { color: #ff69b4; margin-bottom: 15px; font-size: 1.2rem; }

.footer-item p,
.footer-item a { color: #bbb; text-decoration: none; margin-bottom: 8px; display: block; font-size: 0.9rem; }
.footer-item a:hover { color: #ff69b4; }

.footer-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid #444; color: #bbb; font-size: 0.9rem; }

/* Social links */
.fsocial-links { display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 25px; flex-wrap: wrap; }

.fsocial-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.fsocial-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.fsocial-link:hover::before { left: 100%; }

.fsocial-link:hover,
.fsocial-link:focus {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.5);
    outline: 2px solid #ff69b4;
    outline-offset: 3px;
    color: white;
}

.fsocial-link svg { width: 24px; height: 24px; transition: transform 0.3s ease; margin-top: 12px; }
.fsocial-link:hover svg { transform: rotate(10deg) scale(1.1); }

/* Payment methods */
.payment-methods { margin-top: 40px; padding-top: 30px; border-top: 1px solid #444; }
.payment-methods h3 { color: #ff69b4; margin-bottom: 20px; font-size: 1.2rem; text-align: center; }

.payment-icons { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }

.payment-link {
    background: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 70px;
    height: 70px;
}

.payment-link:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3); }
.payment-link img { width: 48px; height: 48px; filter: brightness(0) invert(1); object-fit: contain; }

/* ============================================
   RESPONSIVE   TABLET & MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .nursify-nav { flex-direction: column; padding: 15px; gap: 15px; }
    .nursify-logo-img { height: 60px; max-width: 180px; }
    .nursify-nav-buttons { flex-direction: column; gap: 10px; width: 100%; }
    .nav-button, .nursify-cta-button { width: 100%; text-align: center; }

    /* Mobile dropdown   always visible, no hover needed */
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { width: 100%; justify-content: center; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(255,105,180,0.15);
        border-radius: 8px;
        margin-top: 6px;
        display: none;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: block; animation: none; }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-menu li a { text-align: center; }

    .hero-section { padding: 40px 15px; min-height: auto; }
    .hero-container { grid-template-columns: 1fr; gap: 30px; }
    .hero-content h1 { font-size: 2rem; margin-bottom: 15px; }
    .hero-content .subtitle { font-size: 1rem; margin-bottom: 20px; }
    .hero-features { flex-direction: column; gap: 15px; margin: 20px 0; }
    .hero-feature-icon { width: 40px; height: 40px; font-size: 20px; }
    .hero-feature-text { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; gap: 15px; margin-top: 25px; }
    .btn { width: 100%; text-align: center; padding: 14px 30px; font-size: 1rem; }
    .hero-image { height: 400px; order: -1; }

    .services { padding: 40px 15px; }
    .services h2 { font-size: 1.8rem; margin-bottom: 15px; }

    .service-block,
    .service-block:nth-child(even),
    .service-block.image-right { grid-template-columns: 1fr; margin-bottom: 30px; }

    .service-block:nth-child(even) .service-image,
    .service-block:nth-child(even) .service-image2,
    .service-block.image-right .service-image,
    .service-block.image-right .service-image2 { order: 1; }

    .service-image, .service-image2 { height: 250px; }
    .service-content { padding: 30px 20px; }
    .service-content h3 { font-size: 1.5rem; margin-bottom: 15px; }
    .service-content .service-description,
    .service-content .service-description2 { font-size: 0.95rem; line-height: 1.6; }
    .service-features li { font-size: 0.9rem; padding: 6px 0 6px 25px; }
    .service-pricing { padding: 15px 20px; margin-top: 15px; }
    .service-pricing .price { font-size: 1.1rem; }

    .team { padding: 40px 15px; }
    .team h2 { font-size: 1.8rem; }
    .team-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    .team-photo { height: 300px; }
    .team-info { padding: 20px; }
    .team-info h4 { font-size: 1.2rem; }
    .team-info p { font-size: 0.9rem; }

    .footer { padding: 40px 15px; }
    .footer h2 { font-size: 1.8rem; }
    .footer-simple { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    .footer-item { padding: 15px; }
    .footer-item h3 { font-size: 1.1rem; }
    .footer-item p, .footer-item a { font-size: 0.85rem; }
    .fsocial-links { flex-wrap: wrap; gap: 12px; }
    .fsocial-link { width: 45px; height: 45px; }
    .fsocial-link svg { width: 22px; height: 22px; }
    .footer-bottom { font-size: 0.85rem; }
}

/* ============================================
   RESPONSIVE   SMALL PHONES (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.75rem; }
    .hero-content .subtitle { font-size: 0.95rem; }
    .service-content h3 { font-size: 1.3rem; }
    .service-content .service-description,
    .service-content .service-description2 { font-size: 0.9rem; }
    .nursify-logo-img { height: 50px; max-width: 150px; }
    .services h2, .team h2, .footer h2 { font-size: 1.6rem; }
    .hero-image { height: 300px; }
    .team-photo { height: 250px; }
}

/* ============================================
   RESPONSIVE   LANDSCAPE MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section { min-height: auto; padding: 30px 15px; }
    .hero-image { height: 300px; }
    .hero-content h1 { font-size: 1.8rem; }
}

/* ============================================
   INSTAGRAM VIDEO EMBEDS
   ============================================ */
.nursify-ig-videos {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4e1 100%);
    padding: 70px 20px;
}
.nursify-ig-videos-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.nursify-ig-header {
    text-align: center;
    margin-bottom: 50px;
}
.ig-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff69b4;
    margin-bottom: 10px;
}
.nursify-ig-header h2 {
    font-size: 2rem;
    color: #222;
    font-weight: 300;
    margin-bottom: 10px;
}
.nursify-ig-header p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}
.ig-follow-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
}
.ig-follow-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}
.nursify-ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    justify-items: center;
}
.nursify-ig-item {
    width: 100%;
    max-width: 360px;
}
.nursify-ig-embed-wrap {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    background: #fafafa;
}
.nursify-ig-embed-wrap iframe {
    display: block;
    width: 100%;
    min-height: 480px;
    border: none;
}
.nursify-ig-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .nursify-ig-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .nursify-ig-grid { grid-template-columns: 1fr; }
    .nursify-ig-videos { padding: 50px 18px; }
}
