/*
 * Medprime Global — Home v2 Complete Redesign
 * Overrides template CSS for Hero, About, Services, Why, Contact
 */

/* ============================================================
   CSS DESIGN TOKENS
   ============================================================ */
:root {
    --brand:       #3fbbc0;
    --brand-dark:  #2da0a5;
    --brand-glow:  #64c8cc;
    --brand-pale:  #e0f8f8;
    --navy:        #0b1d35;
    --navy-mid:    #132847;
    --navy-light:  #1d3a5f;
    --off-white:   #f5f9fa;
    --white:       #ffffff;
    --text-dark:   #1a2332;
    --text-body:   #4a5568;
    --text-muted:  #8892a4;
    --shadow-sm:   0 2px 16px rgba(11,29,53,0.08);
    --shadow-md:   0 8px 40px rgba(11,29,53,0.14);
    --shadow-lg:   0 16px 60px rgba(11,29,53,0.18);
    --r-sm:  8px;
    --r-md:  16px;
    --r-lg:  24px;
    --ease:  all 0.3s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    background: var(--navy) !important;
    background-color: var(--navy) !important;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Ambient glow orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-orb-1 {
    width: 800px; height: 800px;
    top: -300px; right: -200px;
    background: radial-gradient(circle, rgba(63,187,192,0.13) 0%, transparent 60%);
    animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb-2 {
    width: 600px; height: 600px;
    bottom: -200px; left: -150px;
    background: radial-gradient(circle, rgba(63,187,192,0.09) 0%, transparent 60%);
    animation: orbFloat2 18s ease-in-out infinite;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    top: 20%; left: 5%;
    background: radial-gradient(circle, rgba(63,187,192,0.06) 0%, transparent 65%);
    animation: orbFloat1 10s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(-30px,25px) scale(1.06); }
}
@keyframes orbFloat2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(20px,-20px) scale(1.08); }
}

/* Grid dots texture */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

/* Carousel fills full hero */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
    position: absolute !important;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
}
#hero .carousel-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-size: cover;
    background-position: center;
}

/* Override old template white box */
#hero .container {
    background: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-top: none !important;
    text-align: center;
}
@media (max-width: 1200px) {
    #hero .container {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (max-width: 992px) {
    #hero .container { margin-top: 0 !important; }
}

/* Slide content wrapper */
.hero-slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 60px;
}

/* Eyebrow pill */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(63,187,192,0.12);
    border: 1px solid rgba(63,187,192,0.3);
    color: var(--brand-glow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeSlideDown 0.7s ease both;
}

/* Hero headline — override template */
#hero h1,
#hero h2 {
    color: #ffffff !important;
    font-size: 58px !important;
    font-weight: 800 !important;
    line-height: 1.13 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 24px !important;
    font-family: "Poppins", sans-serif !important;
    text-shadow: none !important;
    animation: fadeSlideDown 0.8s 0.1s ease both;
}

/* Gradient accent word */
.text-gradient {
    background: linear-gradient(90deg, #7ed8db 0%, #b8eef0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero body text — override template */
#hero p {
    color: rgba(255,255,255,0.72) !important;
    font-size: 18px !important;
    line-height: 1.85 !important;
    max-width: 620px;
    margin: 0 auto !important;
    animation: fadeSlideDown 0.8s 0.2s ease both;
}

/* CTA buttons row */
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
    animation: fadeSlideDown 0.8s 0.3s ease both;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Primary teal button */
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand);
    color: #fff;
    padding: 15px 38px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: var(--ease);
    box-shadow: 0 4px 24px rgba(63,187,192,0.4);
    border: none;
    text-decoration: none;
}
.btn-primary-hero:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(63,187,192,0.55);
    text-decoration: none;
}

/* Ghost outline button */
.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 13px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--ease);
    border: 1.5px solid rgba(255,255,255,0.35);
    text-decoration: none;
}
.btn-ghost-hero:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.65);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Carousel dots — custom */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    padding: 0;
    cursor: pointer;
    transition: var(--ease);
}
.hero-dots button.active {
    background: var(--brand);
    width: 28px;
    border-radius: 5px;
}

/* Scroll cue — bottom right */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    right: 44px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.hero-scroll-cue a {
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: var(--ease);
    text-decoration: none;
}
.hero-scroll-cue a i {
    font-size: 18px;
    animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-cue a:hover { color: var(--brand); }
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(7px); }
}

/* SVG wave bottom */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 72px; }

/* Carousel fade transitions */
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end { opacity: 0; }
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.65s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0,0,0);
}

/* Hero responsive */
@media (max-width: 1100px) {
    #hero h1, #hero h2 { font-size: 46px !important; }
}
@media (max-width: 768px) {
    #hero h1, #hero h2 { font-size: 34px !important; letter-spacing: -0.5px !important; }
    #hero p { font-size: 15px !important; }
    .hero-scroll-cue { display: none; }
    .hero-wave svg { height: 40px; }
}
@media (max-width: 480px) {
    #hero h1, #hero h2 { font-size: 26px !important; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary-hero, .btn-ghost-hero { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */
.section-header {
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-eyebrow {
    display: inline-block;
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 20px; height: 2px;
    background: var(--brand);
    transform: translateY(-50%);
}
.section-header h2 {
    font-size: 40px !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    font-family: "Poppins", sans-serif !important;
    letter-spacing: -0.5px;
}
.section-header h2::after { display: none !important; }
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 100px 0 80px;
    background: var(--off-white);
    /* Override old section-bg */
}
.about-section .section-header h2,
.about-section .section-header p { margin-bottom: 0; }

.about-text-block p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-lead {
    font-size: 17px !important;
    font-weight: 500;
    color: var(--text-dark) !important;
    border-left: 3px solid var(--brand);
    padding-left: 18px;
    margin-bottom: 24px !important;
    line-height: 1.7 !important;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px solid rgba(63,187,192,0.1);
}
.feature-list li:last-child { border-bottom: none; }
.feat-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* About CTA buttons */
.btn-teal {
    display: inline-flex;
    align-items: center;
    background: var(--brand);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--ease);
    box-shadow: 0 4px 20px rgba(63,187,192,0.3);
    text-decoration: none;
}
.btn-teal:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(63,187,192,0.4);
    text-decoration: none;
}
.btn-outline-teal {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--brand);
    padding: 11px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--ease);
    border: 2px solid var(--brand);
    text-decoration: none;
}
.btn-outline-teal:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Stats 2x2 grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-block {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 34px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--brand);
    transition: var(--ease);
}
.stat-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.stat-icon-wrap {
    width: 56px; height: 56px;
    background: var(--brand-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.stat-icon-wrap i { font-size: 22px; color: var(--brand); }
.stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
    font-family: "Poppins", sans-serif;
}
.stat-num span { font-size: 26px; color: var(--brand); }
.stat-name {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 576px) {
    .stats-grid { gap: 12px; }
    .stat-block { padding: 24px 14px; }
    .stat-num { font-size: 30px; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 100px 0;
    background: var(--white);
}
.service-item {
    background: var(--off-white);
    border-radius: var(--r-md);
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--ease);
    border: 1px solid rgba(63,187,192,0.08);
    cursor: default;
}
.service-item:hover {
    background: var(--navy);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.si-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 18px;
    transition: var(--ease);
}
.service-item:hover .si-num { color: rgba(255,255,255,0.35); }
.si-icon {
    width: 56px; height: 56px;
    background: var(--brand-pale);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--ease);
}
.si-icon i { font-size: 24px; color: var(--brand); transition: var(--ease); }
.service-item:hover .si-icon { background: rgba(63,187,192,0.18); }
.service-item:hover .si-icon i { color: var(--brand-glow); }
.service-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    transition: var(--ease);
}
.service-item:hover h4 { color: #fff; }
.service-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    transition: var(--ease);
}
.service-item:hover p { color: rgba(255,255,255,0.60); }

/* ============================================================
   WHY SECTION  (replaces old CTA banner)
   ============================================================ */
.why-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(63,187,192,0.09) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.why-section .container { position: relative; z-index: 1; }

.why-eyebrow { color: var(--brand-glow) !important; }
.why-eyebrow::before { background: var(--brand-glow) !important; }

.why-heading {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.5px;
}
.why-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    margin-bottom: 8px;
}

.why-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.why-pillar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md);
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--ease);
}
.why-pillar:hover {
    background: rgba(63,187,192,0.08);
    border-color: rgba(63,187,192,0.22);
    transform: translateY(-2px);
}
.wp-icon {
    width: 44px; height: 44px;
    background: rgba(63,187,192,0.14);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wp-icon i { font-size: 18px; color: var(--brand-glow); }
.wp-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: "Poppins", sans-serif;
}
.wp-body p {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .why-pillars { grid-template-columns: 1fr; }
    .why-heading { font-size: 28px; }
    .why-section { padding: 70px 0; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 100px 0;
    background: var(--off-white);
}
.contact-map-wrap {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0;
}

/* Info block — dark navy card */
.contact-info-block {
    background: var(--navy);
    border-radius: var(--r-md);
    padding: 36px 28px;
    height: 100%;
}
.contact-info-block h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    font-family: "Poppins", sans-serif;
}
.ci-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ci-row:last-child { border-bottom: none; }
.ci-icon {
    font-size: 17px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
}
.ci-row strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.ci-row p {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.55;
}

/* Form block — white card */
.contact-form-block {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.contact-form-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-family: "Poppins", sans-serif;
}

/* Custom floating label inputs */
.cf-field {
    position: relative;
    margin-bottom: 4px;
}
.cf-field input,
.cf-field textarea {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--r-sm);
    padding: 22px 16px 8px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--ease);
    outline: none;
    font-family: "Open Sans", sans-serif;
    resize: none;
    box-sizing: border-box;
}
.cf-field input:focus,
.cf-field textarea:focus {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(63,187,192,0.1);
}
.cf-field label {
    position: absolute;
    top: 15px;
    left: 16px;
    font-size: 14px;
    color: #9aa5b4;
    transition: var(--ease);
    pointer-events: none;
    transform-origin: left top;
}
.cf-field input:focus ~ label,
.cf-field input:not(:placeholder-shown) ~ label,
.cf-field textarea:focus ~ label,
.cf-field textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-8px) scale(0.78);
    color: var(--brand);
    font-weight: 600;
}
.cf-field textarea {
    padding-top: 26px;
    min-height: 130px;
}

/* Status messages */
.contact-form-status .loading {
    padding: 10px 14px;
    background: var(--brand-pale);
    color: var(--brand-dark);
    border-radius: var(--r-sm);
    font-size: 14px;
}
.contact-form-status .error-message {
    padding: 10px 14px;
    background: #fff0f0;
    color: #c0392b;
    border-left: 3px solid #c0392b;
    border-radius: var(--r-sm);
    font-size: 14px;
}
.contact-form-status .sent-message {
    padding: 10px 14px;
    background: #f0faf4;
    color: #1a8a4a;
    border-left: 3px solid #1a8a4a;
    border-radius: var(--r-sm);
    font-size: 14px;
}

/* Submit button */
.btn-send {
    display: inline-flex;
    align-items: center;
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease);
    box-shadow: 0 4px 20px rgba(63,187,192,0.3);
    font-family: "Open Sans", sans-serif;
}
.btn-send:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(63,187,192,0.42);
}

@media (max-width: 768px) {
    .contact-form-block, .contact-info-block { padding: 28px 20px; }
    .section-header h2 { font-size: 28px !important; }
    .about-section,
    .services-section,
    .why-section,
    .contact-section { padding: 70px 0; }
}

/* ============================================================
   RESPONSIVE — general
   ============================================================ */
@media (max-width: 992px) {
    .section-header h2 { font-size: 32px !important; }
    .stats-grid { gap: 14px; }
}

/* ============================================================
   AOS VISIBILITY FIX
   Prevent AOS from keeping #main content invisible
   ============================================================ */
#main [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================================
   HERO IMAGE OVERLAY
   Dark gradient over slide background photos
   ============================================================ */
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,29,53,0.58) 0%, rgba(11,29,53,0.40) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   ABOUT PHOTO FRAME
   Replaces the old 2x2 stats grid on the right side
   ============================================================ */
.about-photo-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}
.about-photo-frame img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}
.about-photo-frame:hover img {
    transform: scale(1.04);
}
.about-stats-row {
    display: flex;
    background: var(--navy);
}
.stat-pill {
    flex: 1;
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-pill:last-child { border-right: none; }
.sp-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--brand);
    font-family: "Poppins", sans-serif;
    line-height: 1;
    margin-bottom: 4px;
}
.sp-label {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
@media (max-width: 768px) {
    .about-photo-frame img { height: 280px; }
    .sp-num { font-size: 18px; }
}
