/* ========================================= */
/* DASHBOARD MOCKUP CSS */
/* ========================================= */
.dashboard-mockup-section {
    padding: 60px 20px 80px 20px;
    background: #f8fafc;
    display: flex;
    justify-content: center;
}

.dm-window {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    display: flex;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
    min-height: 800px;
    text-align: left;
}

/* Sidebar */
.dm-sidebar {
    width: 240px;
    background: #fdfdfd;
    border-right: 1px solid #f1f5f9;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.dm-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dm-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dm-nav-item.active {
    background: #ecfdf5;
    color: #059669;
    font-weight: 600;
}

.dm-nav-item svg {
    width: 18px;
    height: 18px;
}

.dm-sidebar-bottom {
    margin-top: auto;
}

.dm-btn-signout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Main Content */
.dm-main {
    flex: 1;
    background: #f8fcfb; /* Slightly minty white */
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Header */
.dm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dm-header-title h2 {
    font-size: 28px;
    color: #0f172a;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.dm-header-title p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.dm-date-picker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.dm-date-picker svg {
    width: 16px;
    height: 16px;
    color: #94a3b8;
}

/* Summary Cards */
.dm-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dm-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    position: relative;
}

.dm-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.dm-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-icon-wrap.green {
    background: #ecfdf5;
    color: #059669;
}

.dm-icon-wrap.yellow {
    background: #fefce8;
    color: #eab308;
}

.dm-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.dm-badge.green {
    background: #ecfdf5;
    color: #059669;
}

.dm-badge.yellow {
    background: #fefce8;
    color: #ca8a04;
}

.dm-card-title {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.dm-card-value {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1;
}

.dm-card-subtext {
    font-size: 12px;
    color: #64748b;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dm-card-subtext::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #eab308;
}

.dm-progress-bar {
    margin-top: 30px;
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
}

.dm-progress-fill {
    height: 100%;
    background: #e2e8f0;
    width: 80%;
}

.dm-progress-segments {
    display: flex;
    gap: 4px;
    margin-top: 30px;
    height: 6px;
}

.dm-progress-seg {
    flex: 1;
    background: #d1fae5;
    border-radius: 3px;
}

.dm-progress-seg.active {
    background: #059669;
}

/* Bottom Section */
.dm-bottom {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 30px;
}

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

.dm-section-header h3 {
    font-size: 20px;
    color: #0f172a;
    font-weight: 700;
    margin: 0;
}

.dm-link {
    color: #059669;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.dm-upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dm-upcoming-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}

.dm-booking-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dm-avatar {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #10b981;
    color: white;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-booking-details h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #0f172a;
}

.dm-booking-details p {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #64748b;
}

.dm-status-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.dm-booking-time {
    text-align: right;
}

.dm-booking-time h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #059669;
    font-weight: 700;
}

.dm-booking-time p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Top Services */
.dm-services-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}

.dm-services-img {
    position: relative;
    height: 160px;
    background: #e2e8f0;
}

.dm-services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dm-img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(16, 185, 129, 0.85);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.dm-services-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dm-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dm-service-name {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.dm-service-count {
    font-size: 14px;
    color: #0f172a;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .dm-cards { grid-template-columns: 1fr; }
    .dm-bottom { grid-template-columns: 1fr; }
    .dm-window { flex-direction: column; }
    .dm-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #f1f5f9; }
}

/* ========================================= */
/* WHY ONESPA AI SECTION MOCKUP CSS */
/* ========================================= */



.why-onespa-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-onespa-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Column */
.why-onespa-text {
    flex: 1;
}

.why-onespa-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
    letter-spacing: -1px;
}

.why-onespa-heading span {
    color: #059669; /* primary green */
}

.why-onespa-sub {
    font-size: 20px;
    color: #475569;
    margin-bottom: 30px;
}

.why-onespa-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.why-onespa-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #334155;
}

.why-onespa-list-item strong {
    color: #059669;
}

.why-onespa-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-onespa-check svg {
    width: 18px;
    height: 18px;
}

.why-onespa-box {
    border: 2px dashed #a7f3d0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
}

.why-onespa-box-icon {
    width: 48px;
    height: 48px;
}

.why-onespa-box-text {
    font-size: 18px;
    color: #334155;
}

.why-onespa-box-text strong {
    color: #059669;
}

/* Right Column (Phone Mockup) */
.why-onespa-phone-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.wos-phone {
    width: 340px; /* Constrain width directly */
    height: 560px; /* Increased height as requested */
    background: #f8fafc;
    border: 12px solid #1e293b;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 16px; /* Reduced padding inside phone */
}

/* Dynamic Island / Notch */
.wos-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1e293b;
    border-radius: 20px;
    z-index: 10;
}

.wos-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 24px;
    padding: 0 10px;
}

.wos-status-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Phone Header */
.wos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.wos-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
}

.wos-logo-icon {
    width: 32px;
    height: 32px;
    background: #059669;
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wos-avatar-ph {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #cbd5e1;
}

.wos-greeting {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wos-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
}

.wos-badge-dot {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
}

/* Rank Card */
.wos-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

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

.wos-card-title {
    font-size: 14px;
    color: #64748b;
}

.wos-up-badge {
    background: #d1fae5;
    color: #059669;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.wos-rank-score {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.wos-rank-num {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.wos-rank-badge {
    background: #059669;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.wos-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Stats Row */
.wos-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.wos-stat-card {
    background: white;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.wos-stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wos-stat-icon.views { background: #e0f2fe; color: #0284c7; }
.wos-stat-icon.calls { background: #ffedd5; color: #ea580c; }
.wos-stat-icon.dirs { background: #fce7f3; color: #db2777; }

.wos-stat-num {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.wos-stat-label {
    font-size: 12px;
    color: #64748b;
}

/* Button */
.wos-btn {
    width: 100%;
    background: #0f172a;
    color: white;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin-top: auto;
}

/* Bottom Banner */
.why-onespa-bottom-banner {
    background: #059669;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.why-onespa-bottom-banner strong {
    font-weight: 700;
}

.why-onespa-bottom-banner svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 992px) {
    .why-onespa-content {
        flex-direction: column;
    }
    .why-onespa-phone-wrap {
        justify-content: center;
    }
    .why-onespa-heading {
        font-size: 36px;
    }
}

/* ========================================= */
/* TWO FOLD SECTION (TIMELINE + MOCKUP)      */
/* ========================================= */
.why-onespa-section {
    padding: 80px 20px;
    background: white;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
}

.two-fold-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1600px; /* Increased for 3 columns */
    margin: 0 auto;
}

/* Global Top Heading */
.global-section-heading {
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.global-section-heading h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.global-section-heading h2 .highlight {
    color: #059669;
}

.global-section-heading .sub-1 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 500;
}

.global-section-heading .sub-2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.global-section-heading .sub-2 strong {
    font-weight: 800;
}

.global-section-heading .sub-3 {
    font-size: 24px;
}

.global-section-heading .sub-3 strong {
    font-weight: 800;
    color: #059669;
}

.fold-left {
    flex: 0 0 320px; /* Reduced width */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fold-middle {
    flex: 0 0 420px; /* Fixed width for middle column */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the phone and text */
    justify-content: flex-start;
    height: 100%; /* Take full height of stretched container */
    box-sizing: border-box;
    background-color: #f8fdfa; /* light green tint */
    background-image: radial-gradient(#d1fae5 2px, transparent 2px);
    background-size: 30px 30px;
    border-radius: 40px; /* Matched phone border radius */
    padding: 40px 30px;
}

.fold-right-booking {
    flex: 1; /* Takes remaining space (approx 700-800px) */
    display: flex;
    justify-content: center;
    background-color: #f8fafc;
    border-radius: 40px;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure it stretches fully */
}

/* Timeline Layout */
.tl-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Tighter gap */
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.tl-line {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #10b981;
    z-index: 1;
}

.tl-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tl-number {
    width: 36px;
    height: 36px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px; /* Reduced margin */
    box-shadow: 0 0 0 6px #d1fae5;
}

.tl-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px; /* Reduced margin */
    background: #f8fdfa; 
    padding: 0 10px;
}

/* Generic Card Styles */
.tl-card {
    background: white;
    border-radius: 12px;
    padding: 16px; /* Reduced from 20px */
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

/* Card 1: Connect GMB */
.tl-c1-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.tl-c1-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}
.tl-c1-title {
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
}
.tl-c1-sub {
    font-size: 12px;
    color: #64748b;
}
.tl-c1-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    margin-bottom: 16px;
}
.tl-c1-s-icon {
    color: #10b981;
    margin-bottom: 8px;
}
.tl-c1-s-title {
    color: #059669;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}
.tl-c1-s-sub {
    color: #059669;
    font-size: 12px;
}
.tl-c1-desc {
    text-align: center;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

/* Card 2: Auto Post */
.tl-c2-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tl-c2-title {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    flex: 1;
}
.tl-c2-time {
    font-size: 12px;
    color: #64748b;
}
.tl-c2-body {
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 12px;
}
.tl-c2-body span {
    color: #2563eb;
}
.tl-c2-img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}
.tl-c2-img-container img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.tl-ai-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tl-c2-btn {
    width: 100%;
    border: 1px solid #e2e8f0;
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

/* Card 3: AI Review */
.tl-c3-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tl-c3-avatar {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}
.tl-c3-name {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
}
.tl-c3-stars {
    color: #f59e0b;
    font-size: 14px;
}
.tl-c3-review {
    font-style: italic;
    font-size: 13px;
    color: #334155;
    margin-bottom: 16px;
    line-height: 1.5;
}
.tl-c3-reply {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    border-left: 3px solid #3b82f6;
    margin-top: 24px;
}
.tl-reply-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    background: #3b82f6;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tl-reply-title {
    font-weight: 700;
    font-size: 13px;
    color: #0f172a;
    margin-bottom: 6px;
    text-align: center;
}
.tl-reply-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    text-align: center;
}

/* Google Search Mockup CSS */
.g-search-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 16px;
}
.g-logo {
    margin-bottom: 16px;
}
.g-logo svg {
    height: 32px;
}
.g-search-bar {
    width: 100%;
    background: #f1f3f4;
    border-radius: 24px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.g-search-text {
    font-size: 14px;
    color: #3c4043;
}
.g-search-mic {
    color: #5f6368;
}
.g-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e8eaed;
    padding-bottom: 10px;
    margin-bottom: 0;
    font-size: 13px;
    color: #5f6368;
    font-weight: 500;
}
.g-tab.active {
    color: #059669;
    border-bottom: 2px solid #059669;
    padding-bottom: 8px;
}
.g-map-area {
    background-color: #f8f9fa;
    background-image: radial-gradient(#dadce0 1px, transparent 1px);
    background-size: 10px 10px;
    height: 120px;
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    border-bottom: 1px solid #e8eaed;
}
.g-places-list {
    display: flex;
    flex-direction: column;
}
.g-place-card {
    padding: 16px 0;
    border-bottom: 1px solid #e8eaed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.g-place-info {
    flex: 1;
}
.g-place-title {
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
}
.g-place-rating {
    font-size: 13px;
    color: #70757a;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}
.g-stars {
    color: #fbbc04;
    letter-spacing: 2px;
    font-size: 10px;
}
.g-place-status {
    font-size: 12px;
    color: #70757a;
}
.g-place-status span {
    color: #188038;
}
.g-place-actions {
    display: flex;
    gap: 16px;
}
.g-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #1a73e8;
    font-size: 11px;
    font-weight: 500;
}
.g-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dadce0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.g-more-places {
    text-align: center;
    padding: 16px 0;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .fold-middle {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .two-fold-container {
        flex-direction: column;
        align-items: center;
    }
    .fold-left, .fold-middle, .fold-right-phone {
        width: 100%;
        flex: auto;
    }
}

/* ========================================= */
/* BOOKING PAGE MOCKUP (RIGHT FOLD)          */
/* ========================================= */
.booking-mockup-wrapper {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow-y: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid #e2e8f0;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.booking-mockup-wrapper::-webkit-scrollbar {
    display: none;
}

/* Header Grid */
.bm-header-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 140px 140px;
    gap: 4px;
    position: relative;
}
.bm-header-grid > div {
    background-color: #cbd5e1;
    background-size: cover;
    background-position: center;
}
.bm-img-1 {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=800');
}
.bm-img-2 {
    grid-column: 2 / 3;
    background-image: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&q=80&w=400');
}
.bm-img-3 {
    grid-column: 2 / 3;
    background-image: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&q=80&w=400');
}

/* Main Layout */
.bm-body {
    display: flex;
    padding: 30px;
    gap: 40px;
}
.bm-left-col {
    flex: 1;
}
.bm-right-col {
    width: 280px;
    margin-top: -100px; /* Pull it up over the image */
    position: relative;
    z-index: 10;
}

/* Floating Card */
.bm-floating-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 24px;
    border: 1px solid #f1f5f9;
}
.bm-fc-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.bm-fc-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
}
.bm-fc-stars {
    color: #f59e0b;
    letter-spacing: 2px;
}
.bm-fc-btn {
    width: 100%;
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 24px;
}
.bm-fc-hours {
    font-size: 13px;
    color: #475569;
}
.bm-fc-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 500;
}
.bm-fc-status span.open {
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
}
.bm-fc-status span.open::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}
.bm-fc-hours-list {
    margin-bottom: 12px;
}
.bm-fc-hours-list .row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    color: #64748b;
}
.bm-fc-hours-list .row.active {
    font-weight: 600;
    color: #0f172a;
}
.bm-fc-hours-list .row.closed {
    color: #94a3b8;
}
.bm-fc-address {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}
.bm-fc-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #ef4444;
}
.bm-fc-address a {
    display: block;
    color: #3b82f6;
    text-decoration: none;
    margin-top: 4px;
    font-weight: 500;
}

/* Sections */
.bm-section {
    margin-bottom: 40px;
}
.bm-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

/* Services */
.bm-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    overflow-x: auto;
    white-space: nowrap;
}
.bm-tab {
    cursor: pointer;
}
.bm-tab.active {
    color: #0f172a;
    position: relative;
}
.bm-tab.active::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0f172a;
}
.bm-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}
.bm-service-info {
    flex: 1;
}
.bm-service-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}
.bm-service-sub {
    font-size: 13px;
    color: #64748b;
}
.bm-service-book {
    padding: 8px 20px;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
}

/* Team */
.bm-team-list {
    display: flex;
    gap: 30px;
}
.bm-team-member {
    text-align: center;
}
.bm-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #cbd5e1;
    margin: 0 auto 12px;
    background-size: cover;
    background-position: center;
}
.bm-team-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}
.bm-team-role {
    font-size: 12px;
    color: #64748b;
}

/* About & Info */
.bm-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}
.bm-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bm-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}
.bm-info-item svg {
    color: #10b981;
}

/* Reviews */
.bm-review-summary {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.bm-review-score {
    text-align: center;
}
.bm-rs-num {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}
.bm-rs-stars {
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 2px;
    margin: 8px 0;
}
.bm-rs-count {
    font-size: 12px;
    color: #64748b;
}
.bm-review-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bm-rb-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #64748b;
}
.bm-rb-bar-wrap {
    flex: 1;
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
}
.bm-rb-fill {
    height: 100%;
    background: #f59e0b;
}

@media (max-width: 1200px) {
    .two-fold-container {
        flex-direction: column;
        align-items: center;
    }
    .fold-middle, .fold-right-booking {
        width: 100%;
        flex: auto;
        margin-top: 30px;
    }
    .bm-body {
        flex-direction: column;
    }
    .bm-right-col {
        width: 100%;
        margin-top: 0;
    }
}

/* ========================================= */
/* NEW HERO SECTION                          */
/* ========================================= */
.hero-section-new {
    padding: 40px 20px 100px;
    background-color: #ffffff;
    background-image: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: none;
}
.hero-new-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 0;
}
.hero-new-curve svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}
/* Floating Leaves */
.floating-leaf {
    position: absolute;
    opacity: 0.2;
    z-index: 0;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}
.leaf-1 {
    top: 10%;
    left: 10%;
    width: 60px;
    transform: rotate(-15deg);
}
.leaf-2 {
    top: 50%;
    left: 5%;
    width: 100px;
    transform: rotate(25deg);
    opacity: 0.15;
}
.leaf-3 {
    top: 20%;
    right: 35%;
    width: 45px;
    transform: rotate(45deg);
}
.leaf-4 {
    bottom: 300px;
    right: 5%;
    width: 120px;
    transform: rotate(-30deg);
    opacity: 0.1;
}
.leaf-5 {
    bottom: 250px;
    left: 45%;
    width: 50px;
    transform: rotate(10deg);
}

.hero-new-container {
    max-width: 1200px;
    margin: 0 auto;
}
.hero-new-title {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero-new-sub {
    font-size: 26px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
}
.hero-new-bullets {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: center;
    margin: 0 auto 0 auto;
    width: 100%;
    max-width: 1050px;
}
.hero-new-bullet {
    background: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 16px;
    color: #334155;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    display: block;
    text-align: left;
    flex: 1;
    white-space: nowrap;
}
.hero-new-bullet strong {
    color: #059669;
    font-weight: 800;
}
.hero-cta-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.hero-btn-primary {
    background: #059669;
    color: white;
    padding: 18px 48px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}
.hero-btn-primary:hover {
    background: #047857;
}
.hero-btn-secondary {
    background: white;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    padding: 18px 48px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.hero-btn-secondary:hover {
    border-color: #0f172a;
}

@media (max-width: 768px) {
    .hero-new-title {
        font-size: 42px;
    }
    .hero-new-sub {
        font-size: 20px;
    }
    .hero-new-bullet {
        font-size: 14px;
        padding: 14px 24px;
        white-space: normal;
    }
    .hero-cta-wrap {
        flex-direction: column;
    }
}

/* ========================================= */
/* INTERACTIVE FEATURES SECTION              */
/* ========================================= */
.interactive-features-section {
    padding: 100px 20px;
    background: #ffffff;
    overflow: hidden;
}
.if-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.if-left {
    flex: 1;
    max-width: 500px;
}
.if-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Accordion */
.if-accordion {
    display: flex;
    flex-direction: column;
}
.if-acc-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    cursor: pointer;
}
.if-acc-item.active {
    border-bottom-color: transparent;
}
.if-acc-header {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.if-acc-icon {
    font-size: 24px;
    font-weight: 400;
    color: #475569;
}
.if-acc-content {
    margin-top: 12px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}
.if-acc-content p {
    margin-bottom: 0;
}

/* Layered Mockup */
.if-mockup-wrapper {
    position: relative;
    width: 340px;
    height: 680px;
    transform: scale(0.5);
    transform-origin: center center;
    margin: -170px 0;
}
.if-circle-backdrop {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #059669;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%);
    z-index: 0;
}
.if-phone {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 650px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 8px solid #f8fafc;
    overflow: hidden;
    z-index: 2;
    background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.if-phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #f8fafc;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Phone Inner */
.if-phone-status {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.if-phone-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}
.if-phone-nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.if-phone-card {
    background: white;
    margin: 16px;
    border-radius: 16px;
    padding: 16px;
    position: relative;
    z-index: 3;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
}
.if-pc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    position: relative;
}
.if-pc-avatar {
    width: 40px;
    height: 40px;
    background: #fdf2f8;
    color: #db2777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}
.if-pc-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}
.if-pc-heart {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}
.if-pc-address {
    font-size: 10px;
    color: #64748b;
    margin-left: 52px;
    margin-bottom: 4px;
    line-height: 1.4;
}
.if-pc-reviews {
    margin-left: 52px;
    font-size: 10px;
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}
.if-pc-reviews .stars { color: #059669; }
.if-pc-reviews .count { color: #94a3b8; }
.if-pc-map {
    position: relative;
    height: 100px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
.if-pc-map .map-bg {
    width: 100%;
    height: 100%;
    background-image: url('img/google_map_bg.jpg');
    background-size: cover;
    background-position: center;
}
.if-pc-map .map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    border: 4px solid #f97316;
}
.if-pc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: #64748b;
    line-height: 1.4;
}

/* Floating Service Cards */
.if-float-card {
    position: absolute;
    background: white;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    width: 220px;
    border: 1px solid #f1f5f9;
}
.if-fc-img {
    width: 50px;
    height: 40px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}
.if-fc-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.if-fc-title {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
}
.if-fc-tag {
    font-size: 9px;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 2px 6px;
    border-radius: 12px;
    width: fit-content;
}

@media (max-width: 900px) {
    .if-container {
        flex-direction: column;
    }
    .if-left {
        width: 100%;
        max-width: 100%;
    }
    .if-right {
        margin-top: 40px;
        transform: scale(0.8);
    }
}

/* Razorpay-style Navigation Override */
nav.rp-nav {
    display: flex;
    justify-content: center;
    padding: 0;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.rp-nav-container {
    width: 100%;
    max-width: 1400px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rp-nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.rp-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rp-nav-icon {
    font-size: 20px;
    color: #475569;
    cursor: pointer;
}

.rp-nav-region {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #475569;
    font-size: 14px;
}

.rp-nav-region img {
    border-radius: 2px;
}

.rp-btn-login {
    background: transparent;
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.rp-btn-login:hover {
    background: #eff6ff;
}

.rp-btn-signup {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.rp-btn-signup:hover {
    background: #1d4ed8;
}

.rp-nav-right .nav-links {
    margin: 0;
    gap: 24px;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    margin-right: 20px; /* Space between links and icons */
}
.rp-nav-right .nav-links a {
    color: #475569;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
}
.rp-nav-right .nav-links a:hover {
    color: #0f172a;
}

/* Deep Green Alternate Sections */
.bg-deep-green {
    /* Set base color, but allow children to override without !important */
    color: #ffffff;
}

/* Specifically target headings and direct paragraphs to be white */
.bg-deep-green .section-heading h2,
.bg-deep-green .section-heading p,
.bg-deep-green .ops-header h2,
.bg-deep-green .ops-header p,
.bg-deep-green > .container > h2,
.bg-deep-green > .container > h3,
.bg-deep-green > .container > p,
.bg-deep-green .why-onespa-container > h2,
.bg-deep-green .why-onespa-container > p,
.bg-deep-green .faq-heading h2,
.bg-deep-green .faq-heading p,
.bg-deep-green .hero-new-container > h1,
.bg-deep-green .hero-new-container > p,
.bg-deep-green > .container > .section-heading > h2,
.bg-deep-green > .container > .section-heading > p {
    color: #ffffff !important;
}

.bg-deep-green .highlight {
    color: #6ee7b7 !important;
}
.bg-deep-green .pill {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
}

/* Daily Routine Redesign */
.routine-grid {
    align-items: stretch;
}
.routine-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: transparent;
}
.routine-time {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.routine-title {
    margin-bottom: 1rem;
    font-size: 24px;
}
.routine-desc {
    margin-bottom: 2rem;
    color: #475569;
}
.routine-stat {
    margin-top: auto; /* pushes it to the bottom so they align */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* New Google Mockup Styles */
.gmb-mockup-container {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 10;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
}

.gmb-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    font-family: 'Roboto', 'Inter', sans-serif;
    border: 1px solid #eef2f6;
}

.local-pack-card {
    width: 320px;
    display: flex;
    flex-direction: column;
}

.gmb-card-header {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
    padding: 16px 20px;
    border-bottom: 1px solid transparent;
}

.gmb-map-area {
    position: relative;
    width: 90%;
    height: 140px;
    margin: 0 auto 10px auto;
    border-radius: 12px;
    overflow: hidden;
}

.gmb-map-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.gmb-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #EA4335;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.gmb-3d-pin {
    position: absolute;
    width: 60px;
    height: 90px;
    right: 15%;
    bottom: -10px;
    filter: drop-shadow(0 10px 10px rgba(234, 67, 53, 0.4));
    z-index: 2;
    animation: floatPin 3s ease-in-out infinite;
}

@keyframes floatPin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.gmb-business-list {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gmb-biz-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f1f3f4;
    padding-bottom: 15px;
}
.gmb-biz-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.gmb-biz-info {
    flex: 1;
    padding-right: 10px;
}

.gmb-biz-title {
    font-size: 15px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.gmb-biz-rating {
    font-size: 13px;
    color: #70757a;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.gmb-stars {
    color: #fbbc04;
    font-size: 12px;
}

.gmb-count {
    color: #70757a;
}

.gmb-biz-meta {
    font-size: 13px;
    color: #70757a;
}

.gmb-open {
    color: #1e8e3e;
}

.gmb-biz-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.gmb-view-all {
    margin: 10px 20px 20px 20px;
    background: #f1f3f4;
    color: #1a73e8;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Card 2 Profile */
.gbp-card {
    width: 320px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gbp-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.gbp-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 6px;
}

.gbp-rating-row {
    font-size: 14px;
    color: #202124;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.gbp-meta-cat {
    font-size: 14px;
    color: #70757a;
    margin-bottom: 20px;
}

.gbp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 25px;
}

.gbp-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #3c4043;
    font-weight: 500;
}

.gbp-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #dadce0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 18px;
}

.gbp-success-banner {
    background: #e6f4ea;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.gbp-success-icon {
    width: 24px;
    height: 24px;
    background: #1e8e3e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.gbp-success-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #202124;
}

.gbp-success-text strong {
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 768px) {
    .gmb-mockup-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Dual iPhone Mockups */
.gmb-phones-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

.gmb-phone {
    width: 320px;
    height: 650px;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3), inset 0 0 0 2px #d1d5db;
    border: 10px solid #202124;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.gmb-phone-right {
    transform: translateY(20px);
}

.gmb-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 28px;
    background: #202124;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.gmb-phone-status {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    color: #202124;
    font-size: 13px;
    font-weight: 600;
    z-index: 5;
    background: white;
}
.gmb-phone-status .gmb-phone-icons {
    display: flex;
    gap: 6px;
}

.gmb-phone-content {
    flex: 1;
    overflow-y: auto;
    background: #ffffff;
    scrollbar-width: none;
}
.gmb-phone-content::-webkit-scrollbar {
    display: none;
}

.gmb-phone-bottom-nav {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px 20px 24px;
    background: white;
    border-top: 1px solid #f1f3f4;
}
.gmb-phone-bottom-nav div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    color: #5f6368;
    gap: 4px;
}
.gmb-phone-bottom-nav i {
    font-size: 20px;
}
.gmb-phone-bottom-nav div:first-child {
    color: #5c3df5;
}

.gbp-performance {
    margin-top: 20px;
    border-top: 1px solid #f1f3f4;
    padding-top: 15px;
}
.gbp-perf-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.gbp-perf-stats {
    display: flex;
    justify-content: space-between;
}
.gbp-perf-stats > div {
    text-align: left;
}
.perf-label { font-size: 12px; color: #70757a; margin-bottom: 4px;}
.perf-val { font-size: 18px; font-weight: 600; color: #202124; margin-bottom: 2px;}
.perf-growth { font-size: 13px; color: #1e8e3e; font-weight: 500;}

@media (max-width: 768px) {
    .gmb-phones-container {
        flex-direction: column;
        transform: scale(0.85);
        transform-origin: top center;
    }
    .gmb-phone-right {
        transform: translateY(0);
    }
}
