/* ==========================================================================
   BUSINESS INFORMATION & SERVICES SECTIONS (Apple/Linear/Stripe Aesthetic)
   ========================================================================== */

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

/* Shared Variables */
:root {
    --biz-font-heading: 'Poppins', sans-serif;
    --biz-font-body: 'Inter', sans-serif;

    --biz-pink: #FF4F9A;
    --biz-orange: #FF7A18;
    --biz-purple: #7C3AED;
    --biz-blue: #2563EB;
    --biz-green: #10B981;
    --biz-cyan: #06B6D4;
    --biz-lime: #84CC16;
    --biz-yellow: #F59E0B;
    --biz-violet: #8B5CF6;
    --biz-dark: #0F172A;
}

/* Base Wrapper Reset for Section Isolation */
.biz-info-section,
.biz-services-section {
    font-family: var(--biz-font-body);
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.biz-info-section *,
.biz-services-section * {
    box-sizing: border-box;
}

/* ==========================================================================
   SECTION 1: BUSINESS INFORMATION (CLOCK, STATUS, LOCATION)
   ========================================================================== */
.biz-info-section {
    padding: 80px 0 60px 0;
    background: #F8FAFC;
    background-image: radial-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 0);
    background-size: 24px 24px;
}

.biz-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Common Card Base */
.biz-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


/* CARD 1: LIVE DIGITAL CLOCK & CALENDAR (DARK GRADIENT) */
.biz-card-clock {
    border: 1px solid rgb(248, 248, 248);
    color: #000000;
}

.clock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.clock-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94A3B8;
    text-transform: uppercase;
}

.dot-live {
    width: 8px;
    height: 8px;
    background-color: #FF4F9A;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF4F9A;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 79, 154, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 79, 154, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 79, 154, 0);
    }
}

.clock-analog-icon {
    width: 24px;
    height: 24px;
    border: 2px dashed rgba(255, 79, 154, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.clock-time-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.clock-digits {
    font-family: var(--biz-font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: #0F172A;
}

.clock-ampm {
    background: rgba(255, 79, 154, 0.2);
    color: var(--biz-pink);
    border: 1px solid rgba(255, 79, 154, 0.4);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
}

.clock-date-display {
    color: #EC4899;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
}

/* Calendar Grid inside Clock Card */
.mini-calendar-box {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.calendar-month-name {
    font-family: var(--biz-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
}

.calendar-nav-btns {
    display: flex;
    gap: 6px;
    color: #64748B;
    font-size: 0.8rem;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 8px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-day {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94A3B8;
    padding: 6px 0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cal-day.other-month {
    color: #334155;
}

.cal-day.today {
    background: var(--biz-pink);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 79, 154, 0.4);
}

/* CARD 2: CURRENT SHOP STATUS */
.biz-card-status {
    text-align: center;
    align-items: center;
}

.status-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EA580C;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.status-main-pill {
    width: 100%;
    padding: 14px 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--biz-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.status-main-pill.is-open {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.status-main-pill.is-closed {
    background: linear-gradient(135deg, #FF4F9A 0%, #E11D48 100%);
}

.status-hours-title {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
    margin-bottom: 4px;
}

.status-hours-time {
    font-family: var(--biz-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

.status-countdown-box {
    background: #FFF1F2;
    border: 1px solid #FECDD3;
    border-radius: 3px;
    padding: 14px 20px;
    width: 100%;
    margin-bottom: auto;
}

.status-countdown-title {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 500;
}

.status-countdown-digits {
    font-family: var(--biz-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #E11D48;
    margin: 4px 0;
}

.status-countdown-subtitle {
    font-size: 0.75rem;
    color: #94A3B8;
}

.status-illustration-box {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.status-illustration-box svg,
.status-illustration-box img {
    max-height: 90px;
    width: auto;
}

/* CARD 3: STORE LOCATION */
.location-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EA580C;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.map-embed-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    border: 1px solid #E2E8F0;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.location-address {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-distance {
    font-size: 0.85rem;
    color: #64748B;
    padding-left: 24px;
}

.location-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.loc-chip {
    background: #F1F5F9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #E2E8F0;
}

.btn-navigate {
    background: #0F172A;
    color: #FFFFFF;
    font-family: var(--biz-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}


.btn-navigate i.fa-arrow-right {
    transition: transform 0.3s ease;
}

.btn-navigate:hover i.fa-arrow-right {
    transform: translateX(5px);
}


/* ==========================================================================
   SECTION 2: OUR SERVICES (PREMIUM GRID WITH FEATURE PILLS)
   ========================================================================== */
.biz-services-section {
    padding: 100px 0 120px 0;
    background: #FFFFFF;
}

.services-header-box {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
    position: relative;
}

.services-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #FF4F9A;
    background: rgba(255, 79, 154, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-title {
    font-family: var(--biz-font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.services-title .gradient-text {
    background: linear-gradient(135deg, #FF4F9A 0%, #FF7A18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    font-weight: 400;
}

/* 9-Card Services Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}

.service-premium-card {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-theme-color, #FF7A18);
    opacity: 0.8;
    transition: height 0.3s ease;
}


.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--card-theme-bg, #FFF3E0);
    color: var(--card-theme-color, #FF7A18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.service-count-badge {
    text-align: right;
}

.service-count-num {
    font-family: var(--biz-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
}

.service-count-lbl {
    font-size: 0.75rem;
    color: #94A3B8;
    font-weight: 500;
}

.service-card-title {
    font-family: var(--biz-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

/* Feature Pills Inside Cards */
.service-pills-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.s-pill {
    background: var(--card-theme-pill-bg, #FFF8F1);
    color: #334155;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--card-theme-pill-border, #FFEAD5);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.s-pill i {
    color: var(--card-theme-color, #FF7A18);
    font-size: 0.95rem;
}



/* Card Bottom Explore Button */
.btn-explore-service {
    width: 100%;
    padding: 12px 20px;
    border-radius: 3px;
    background: #FFFFFF;
    border: 1.5px solid var(--card-theme-color, #FF7A18);
    color: var(--card-theme-color, #FF7A18);
    font-family: var(--biz-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-explore-service i {
    transition: transform 0.3s ease;
}

.btn-explore-service:hover {
    background: var(--card-theme-color, #FF7A18);
    color: #FFFFFF;
    box-shadow: 0 8px 20px -4px var(--card-theme-shadow, rgba(255, 122, 24, 0.4));
}

.btn-explore-service:hover i {
    transform: translateX(4px);
}

/* 9 Theme Color Variations */
.theme-orange {
    --card-theme-color: #FF7A18;
    --card-theme-bg: #FFF3E0;
    --card-theme-shadow: rgba(255, 122, 24, 0.25);
    --card-theme-pill-bg: #FFF8F1;
    --card-theme-pill-border: #FFEAD5;
}

.theme-purple {
    --card-theme-color: #7C3AED;
    --card-theme-bg: #F3E8FF;
    --card-theme-shadow: rgba(124, 58, 237, 0.25);
    --card-theme-pill-bg: #FAF5FF;
    --card-theme-pill-border: #E9D5FF;
}

.theme-blue {
    --card-theme-color: #2563EB;
    --card-theme-bg: #EFF6FF;
    --card-theme-shadow: rgba(37, 99, 235, 0.25);
    --card-theme-pill-bg: #F0F7FF;
    --card-theme-pill-border: #DBEAFE;
}

.theme-green {
    --card-theme-color: #10B981;
    --card-theme-bg: #ECFDF5;
    --card-theme-shadow: rgba(16, 185, 129, 0.25);
    --card-theme-pill-bg: #F2FBF7;
    --card-theme-pill-border: #D1FAE5;
}

.theme-pink {
    --card-theme-color: #FF4F9A;
    --card-theme-bg: #FCE7F3;
    --card-theme-shadow: rgba(255, 79, 154, 0.25);
    --card-theme-pill-bg: #FFF1F8;
    --card-theme-pill-border: #FBCFE8;
}

.theme-cyan {
    --card-theme-color: #06B6D4;
    --card-theme-bg: #E0F2FE;
    --card-theme-shadow: rgba(6, 182, 212, 0.25);
    --card-theme-pill-bg: #F0F9FF;
    --card-theme-pill-border: #BAE6FD;
}

.theme-lime {
    --card-theme-color: #65A30D;
    --card-theme-bg: #F7FEE7;
    --card-theme-shadow: rgba(101, 163, 13, 0.25);
    --card-theme-pill-bg: #FAFFED;
    --card-theme-pill-border: #ECFCCB;
}

.theme-yellow {
    --card-theme-color: #D97706;
    --card-theme-bg: #FEF3C7;
    --card-theme-shadow: rgba(217, 119, 6, 0.25);
    --card-theme-pill-bg: #FFFBEB;
    --card-theme-pill-border: #FDE68A;
}

.theme-violet {
    --card-theme-color: #8B5CF6;
    --card-theme-bg: #EDE9FE;
    --card-theme-shadow: rgba(139, 92, 246, 0.25);
    --card-theme-pill-bg: #F5F3FF;
    --card-theme-pill-border: #DDD6FE;
}

/* Floating Bottom Illustrations Row */
.services-bottom-decor {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.decor-item {
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.decor-item:hover {
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
}

.decor-item img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
    .biz-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .biz-info-grid {
        grid-template-columns: 1fr;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .clock-digits {
        font-size: 2.6rem;
    }
}