/* ============================================
   Grace Parth Care – Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
    /* Brand Colors */
    --blue-primary: #1B3A5C;
    --blue-dark: #0F2640;
    --blue-light: #2A5A8C;
    --pink-accent: #D4567A;
    --pink-light: #E8899F;
    --green: #2E8B57;
    --green-light: #3DAF6E;
    --gold: #C5A55A;
    --gold-light: #D4B96A;

    /* Neutrals */
    --white: #FFFFFF;
    --bg: #F9FAFB;
    --bg-alt: #F0F4F8;
    --text-dark: #1A1A2E;
    --text-body: #3D3D56;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --shadow: rgba(27, 58, 92, 0.08);
    --shadow-md: rgba(27, 58, 92, 0.12);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--blue-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--pink-accent);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ── Section ── */
.section {
    padding: var(--space-3xl) 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-accent), var(--gold));
    border-radius: var(--radius-full);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: var(--space-md) auto 0;
    font-size: 1.05rem;
}

/* ── Header / Navigation ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--blue-primary);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.nav-links {
    display: none;
    gap: var(--space-xs);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-primary);
    background: var(--bg-alt);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--pink-accent);
    border-radius: var(--radius-full);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 10px;
}

.nav-cta .btn-primary {
    font-size: 0.85rem;
    padding: 8px 20px;
}

.btn-nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--blue-primary);
    background: transparent;
    color: var(--blue-primary);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-nav-login:hover {
    background: var(--blue-primary);
    color: #ffffff;
}

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

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--blue-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 30px var(--shadow-md);
    z-index: 999;
    transition: right var(--transition);
    padding: 90px var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-body);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--blue-primary);
    background: var(--bg-alt);
    border-left-color: var(--pink-accent);
}

.mobile-nav .btn-primary {
    margin-top: var(--space-md);
    text-align: center;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }

    .hamburger,
    .mobile-nav,
    .nav-overlay {
        display: none !important;
    }
}

/* ── Buttons ── */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    color: var(--white);
    border-color: var(--blue-primary);
    box-shadow: 0 4px 15px rgba(27, 58, 92, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 58, 92, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--pink-accent), var(--pink-light));
    color: var(--white);
    border-color: var(--pink-accent);
    box-shadow: 0 4px 15px rgba(212, 86, 122, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 86, 122, 0.4);
    color: var(--white);
}

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

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

.btn-outline-dark {
    background: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-outline-dark:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 var(--space-3xl);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg .slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(27, 58, 92, 0.45) 0%,
            rgba(15, 38, 64, 0.35) 40%,
            rgba(46, 139, 87, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 0 var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.5s;
}

.hero-bg .slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* ── Cards ── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-md);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.card-icon.blue {
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.1), rgba(42, 90, 140, 0.1));
    color: var(--blue-primary);
}

.card-icon.pink {
    background: linear-gradient(135deg, rgba(212, 86, 122, 0.1), rgba(232, 137, 159, 0.1));
    color: var(--pink-accent);
}

.card-icon.green {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(61, 175, 110, 0.1));
    color: var(--green);
}

.card-icon.gold {
    background: linear-gradient(135deg, rgba(197, 165, 90, 0.1), rgba(212, 185, 106, 0.1));
    color: var(--gold);
}

.card h3,
.card h4 {
    margin-bottom: var(--space-sm);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 50%, var(--green) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 86, 122, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto var(--space-xl);
    font-size: 1.05rem;
}

/* ── Page Header (inner pages) ── */
.page-header {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    padding: 120px 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--bg);
    border-radius: 50% 50% 0 0;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--gold-light);
}

/* ── Tables ── */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.9rem;
}

thead {
    background: var(--blue-primary);
    color: var(--white);
}

th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-family: var(--font-heading);
    white-space: nowrap;
}

td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border);
}

tbody tr:hover {
    background: var(--bg-alt);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* ── Package Cards ── */
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-md);
}

.package-card.featured {
    border-color: var(--pink-accent);
    position: relative;
}

.package-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--pink-accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 40px;
    transform: rotate(45deg);
    z-index: 2;
}

.package-header {
    padding: var(--space-xl);
    text-align: center;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    color: var(--white);
}

.package-header h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.package-header .price {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.package-body {
    padding: var(--space-xl);
}

.package-body ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.package-body li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-body);
}

.package-body li svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 3px;
}

.package-footer {
    padding: 0 var(--space-xl) var(--space-xl);
    text-align: center;
}

/* ── Forms ── */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
}

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

/* ── Footer ── */
.footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand img {
    height: 50px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--pink-accent);
    border-radius: var(--radius-full);
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

.footer li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--pink-accent);
    margin-top: 3px;
}

.footer-bottom {
    padding: var(--space-lg) 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--pink-accent);
}

/* ── Values Grid ── */
.value-card {
    text-align: center;
    padding: var(--space-xl);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.08), rgba(46, 139, 87, 0.08));
    color: var(--blue-primary);
}

/* ── Feature List ── */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    color: var(--white);
}

.feature-content h4 {
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Info Cards ── */
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border-left: 4px solid var(--blue-primary);
    box-shadow: 0 4px 20px var(--shadow);
}

.info-card.pink-border {
    border-left-color: var(--pink-accent);
}

.info-card.green-border {
    border-left-color: var(--green);
}

.info-card.gold-border {
    border-left-color: var(--gold);
}

.info-card h3,
.info-card h4 {
    margin-bottom: var(--space-sm);
}

.info-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-left: var(--space-md);
}

.info-card li {
    position: relative;
    padding-left: var(--space-md);
    font-size: 0.95rem;
}

.info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--pink-accent);
    border-radius: 50%;
}

/* ── Map Placeholder ── */
.map-placeholder {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: var(--space-sm);
}

.map-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--blue-light);
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Utility ── */
.text-center {
    text-align: center;
}

.text-blue {
    color: var(--blue-primary);
}

.text-pink {
    color: var(--pink-accent);
}

.text-green {
    color: var(--green);
}

.text-gold {
    color: var(--gold);
}

.mt-1 {
    margin-top: var(--space-md);
}

.mt-2 {
    margin-top: var(--space-xl);
}

.mt-3 {
    margin-top: var(--space-2xl);
}

.mb-1 {
    margin-top: var(--space-md);
}

.mb-2 {
    margin-bottom: var(--space-xl);
}

.mb-3 {
    margin-bottom: var(--space-2xl);
}

/* ── Highlight Stat ── */
.stat-card {
    text-align: center;
    padding: var(--space-xl);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Sub-section styling ── */
.sub-section {
    margin-bottom: var(--space-3xl);
    scroll-margin-top: 90px;
}

.sub-section-header {
    margin-bottom: var(--space-xl);
}

.sub-section-header h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border);
}

.sub-section-header h3 svg {
    flex-shrink: 0;
    color: var(--pink-accent);
}

.sub-section-header p {
    margin-top: var(--space-sm);
    color: var(--text-muted);
}

/* ── Service Nav (anchor links) ── */
.service-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.service-nav a {
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
}

.service-nav a:hover {
    background: var(--blue-primary);
    color: var(--white);
    border-color: var(--blue-primary);
}

/* ── Tag / Badge ── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue {
    background: rgba(27, 58, 92, 0.1);
    color: var(--blue-primary);
}

.badge-pink {
    background: rgba(212, 86, 122, 0.1);
    color: var(--pink-accent);
}

.badge-green {
    background: rgba(46, 139, 87, 0.1);
    color: var(--green);
}

/* ── Terms page specific ── */
.terms-section {
    margin-bottom: var(--space-2xl);
}

.terms-section h3 {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border);
}

.terms-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px var(--shadow);
}

.terms-content h4 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--blue-primary);
}

.terms-content h4:first-child {
    margin-top: 0;
}

.terms-content p,
.terms-content li {
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.terms-content ul {
    padding-left: var(--space-lg);
}

.terms-content ul li {
    position: relative;
    padding-left: var(--space-md);
}

.terms-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--pink-accent);
    border-radius: 50%;
}

/* ── Contact specific ── */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    color: var(--white);
}

/* ── Membership specific ── */
.membership-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.group-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    border-top: 4px solid var(--blue-primary);
}

.group-card:nth-child(2) {
    border-top-color: var(--pink-accent);
}

.group-card:nth-child(3) {
    border-top-color: var(--green);
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-md);
}

/* ── About specific ── */
.vision-mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.vision-mission-card.vision::before {
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
}

.vision-mission-card.mission::before {
    background: linear-gradient(90deg, var(--pink-accent), var(--pink-light));
}

.vision-mission-card h3 {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.vision-mission-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-light);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-primary);
}

/* ── Selection ── */
::selection {
    background: var(--blue-primary);
    color: var(--white);
}