body {
    margin:0;
    font-family: system-ui, -apple-system, Arial, sans-serif;
    background:#f7f7f7;
}

/* HEADER */

.v2-header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    height:70px;
    padding:0 16px;

    background:white;
    border-bottom:1px solid #eee;
}

.v2-header-left {
    display:flex;
    align-items:center;
    gap:16px;   /* space between logo and company name */
}

/* ---------- LOGO AREA ---------- */

.sc-logo {
    display: flex;
    align-items: center;
}

/* uploaded logo */

.sc-logo-badge {

    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    border-radius:10px;

    background:#E8F5E9;
}

/* uploaded logos */

.sc-logo-img{
    height:42px;
    width:auto;
}

/* company name */

.v2-company-name{
    font-weight:600;
    font-size:19px;
    letter-spacing:.2px;
}

.v2-call-btn{
    background:#4CAF50;
    color:white;
    border:none;
    padding:8px 16px;
    border-radius:8px;
    text-decoration: none;
    cursor:pointer;
}





/* HERO */

.v2-hero-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .v2-hero-image {
        height: 260px;
    }
}

.v2-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-hero-words{
    padding:20px;
    background:white;
}

/* TITLE */
.v2-hero-title {
    margin: 0;

    font-size: 30px;        /* tuned for S24 */
    font-weight: 600;

    line-height: 1.15;      /* key fix */

    color: #000;
}

/* SUBTITLE */
.v2-hero-subtitle {
    margin-top: 6px;

    font-size: 16px;
    color: #555;

    line-height: 1.3;
}

.v2-tagline{
    margin:0;
    font-size:22px;
}

.v2-subtagline{
    margin-top:6px;
    color:#666;
    font-size:14px;
}

/* CTA */

.v2-cta-row{
    margin-top:18px;
    display:flex;
    gap:12px;
}

.v2-btn-message{
    flex:1;
    background:#4CAF50;
    color:white;
    border:none;
    padding:12px;
    border-radius:8px;
    text-decoration: none;
    font-size:14px;
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
}
.v2-btn-request{
    flex:1;
    background:#2e7d32;
    color:white;
    border:none;
    padding:12px;
    border-radius:8px;
    text-decoration: none;
    font-size:14px;
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
}

.v2-services,
.v2-gallery,
.v2-about,
.v2-contact {
    padding:20px;
    background:white;
    margin-top:10px;
}

.v2-service{
    background: #FFFFFF;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;

    border: 1px solid #E6EAF2;
}

.v2-service-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.v2-service-title{
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
}

.v2-service-price {
    font-size: 14px;
    font-weight: 600;
    color: #4A7C59; /* slight brand tint instead of gray */
}
.v2-service-desc {
    margin-top: 4px;
    margin-left: 12px;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.35;
}
.v2-photo-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.v2-photo-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
}

.v2-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-photo-caption{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0,0,0,.5);
    color:white;
    font-size:12px;
    padding:4px;
}

.v2-contact-card{
    background:#f3f3f3;
    padding:15px;
    border-radius:10px;
}


.v2-contact-row {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
}

.v2-contact-row:last-child {
    margin-bottom:0;
}
.v2-contact-icon-img {
    width:16px;
    height:16px;
    margin-right:6px;
    object-fit:contain;

    opacity:0.6;

    display:inline-block;
}
.v2-contact-icon {
    font-size:14px;
    opacity:0.6;
    width:18px;
    text-align:center;
}

.v2-footer{
    text-align:center;
    padding:30px;
    color:#777;
    font-size:12px;
}

.v2-business-summary{

    max-width:720px;
    margin:55px auto;

    background:#fff;
    border-radius:12px;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    justify-content:space-between;
    align-items:center;

    display:block;
    padding:0;
    overflow:hidden;

}
/* hero sliver */
.v2-summary-image{
    width:100%;
    height:70px;
    overflow:hidden;
}

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

/* content area */
.v2-summary-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 18px;
}
.v2-summary-left{
    display:flex;
    gap:14px;
    align-items:center;
}

.v2-summary-name{
    font-weight:600;
    font-size:18px;
}

.v2-summary-tagline{
    font-size:14px;
    color:#444;
}

.v2-summary-tagline2{
    font-size:13px;
    color:#777;
}

.v2-summary-link{
    font-weight:600;
    text-decoration:none;
}

.v2-message-card{

    max-width:700px;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
    padding:28px;

    background:#fff;
    border-radius:12px;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    text-align:center;
}
.v2-msg-title {
    margin-bottom: 10px;
}

.v2-msg-body {
    margin-bottom: 6px;
}

/* ✨ the magic line */
.v2-msg-status {
    font-size: 12px;
    color: #555;

    text-align: center;

    margin-top: 6px;
    opacity: 0.9;
}

.v2-actions{

    text-align:center;
    margin-bottom:40px;
}

.v2-primary-btn{

    background:#4CAF50;
    color:white;

    border:none;
    border-radius:8px;

    padding:14px 26px;
    font-size:16px;
    text-decoration: none;

    cursor:pointer;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */

}




.v2-secondary-actions{

    margin-top:35px;
}

.v2-secondary-btn{

    margin:6px;
    padding:13px 18px;
    text-decoration: none;

    border-radius:8px;
    border:1px solid #ccc;

    background:#fff;
    justify-content: center;   /* horizontal center */
}

.v2-context-line{
    text-align:center;
    margin-top:30px;
    margin-bottom:12px;

    font-size:14px;
    color:#555;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    font-weight:500;
}

.v2-context-line .icon {
    font-size:16px;
}



.v2-form-card div.cardBackgroundColor {

    background: transparent; !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.v2-form-card div.cardBackgroundColor[style] {

    box-shadow: none !important;
}

.v2-disabled-option {
    opacity: .45;
    pointer-events: none;
}

.v2-form-card span[style] {

    position: relative !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #eeeeee;

    font-size: 12px;
    font-weight: 200;

    margin-right: 8px;
}

.v2-form-card .cardsHighlightTextColor {

    font-weight:600;
    font-size:14px;

    margin-bottom:6px;
}

/* normalize field title text */

.v2-field-title label,
.v2-field-title span {

    font-weight: 600;
    font-size: 14px;

    display: flex;
    align-items: center;
}

.v2-form-card input,
.v2-form-card textarea,
.v2-form-card select {

    background:#f5f5f5;
    border:none;

    border-radius:8px;

    padding:12px 14px;

    margin-bottom:18px;
}

.v2-form-card  {
    background:#ffffff;

    border-radius:16px;

    padding:22px;

    margin-top:20px;

    box-shadow:0 8px 28px rgba(0,0,0,.12);
    margin-bottom:5px;
}
/* step number badge */

/* individual field card */

.v2-field-card {

    background: #ffffff;
    border-radius: 12px;

    padding: 18px;

    box-shadow: 0 4px 18px rgba(0,0,0,.08);

    margin-bottom: 20px;
}

/* title row */

.v2-field-title {

    display: flex;
    align-items: center;

    margin-bottom: 10px;
}

/* step badge */

.v2-step-badge {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #eeeeee;

    font-size: 12px;
    font-weight: 600;

    margin-right: 8px;
}
.v2-action-page {

    min-height:100vh;
}

/* responsive container */

.v2-action-container {

    max-width:560px;
    margin:0 auto;
    padding:20px 16px 60px;
}

.v2-action-title {

    text-align:center;
    margin-bottom:24px;
}

.v2-action-title h1{

    color:white;
    margin-bottom:18px;
    font-size:36px;
}

.v2-action-icon {

    width:64px;
    height:64px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 14px;

    font-size:28px;
}

.v2-action-instructions{

    color:white;
    font-size:14px;

    opacity:.9;

    margin-top:8px;
}
.v2-action-footer-card {

    background: #ffffff;

    border-radius: 16px;

    padding: 14px;

    margin: 12px auto 0;

    max-width: 560px;

    display: flex;
    gap: 12px;

    box-shadow: 0 6px 20px rgba(0,0,0,.10);
}
.v2-confirm-footer-card {
    position: sticky;
    bottom: 12px;


    background: #ffffff;

    border-radius: 16px;

    padding: 14px;

    margin: 12px auto 0;

    max-width: 500px;

    display: flex;
    gap: 12px;

    box-shadow: 0 6px 20px rgba(0,0,0,.10);
}

.v2-btn-cancel {

    flex: 1;

    background: #eeeeee;
    color: #222;

    border: none;

    padding: 14px;

    border-radius: 12px;

    font-weight: 600;

    text-align: center;

    text-decoration: none;

    display: block;
}

.v2-btn-next {

    flex: 1;

    background: var(--secondaryColor, #2e7d32);
    color: white;

    border: none;

    padding: 14px;

    border-radius: 12px;

    font-weight: 600;

    text-align: center;

    text-decoration: none;

    display: block;
}


.v2-btn-next:hover { filter:brightness(1.05); }

.v2-confirm-header {

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:14px;
}

.v2-confirm-title {

    font-weight:600;
}

/* EDIT action */

.v2-confirm-edit {

    background:none;
    border:none;

    padding:0;

    font-size:14px;
    font-weight:600;

    color:var(--secondaryColor,#2e7d32);

    cursor:pointer;
}

.v2-tertiary-action-when-above {
    text-align:center;

    margin-top:30px;
    margin-bottom:8px;

    padding-top:1px;

}
.v2-tertiary-action {
    text-align:center;

    margin-top:24px;
    margin-bottom:16px;

    padding-top:16px;

    border-top:1px solid #eee;   /* ← gives it structure */
}

/* looks like a soft action, not a button */
.v2-tertiary-link {
    font-size:14px;
    font-weight:500;

    color:#2e7d32; /* your secondaryColor */

    text-decoration:none;
}

.v2-tertiary-link:hover {
    text-decoration:underline;
}

/* helper text */
.v2-tertiary-helper {
    margin-top:6px;

    font-size:12px;
    color:#888;

    line-height:1.4;
}

.v2-appt-card {
    text-align:center;
}

/* Title */
.v2-appt-title {
    font-size:22px;
    font-weight:600;
    margin-bottom:12px;
}

/* Date */
.v2-appt-date {
    font-size:18px;
    font-weight:500;
    margin-bottom:4px;
}

/* Time */
.v2-appt-time {
    font-size:16px;
    color:#555;
    margin-bottom:18px;
}

/* Details container */
.v2-appt-details {
    text-align:left;
    margin-top:10px;
}

/* Each row */
.v2-appt-row {
    margin-bottom:14px;
}

/* Label */
.v2-appt-label {
    font-size:12px;
    color:#888;
    margin-bottom:2px;
}

.v2-s-m {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size:14px;
    color:#888;
}

/* Value */
.v2-appt-value {
    font-size:15px;
    color:#222;
}

/* Make service pop */
.v2-appt-primary {
    font-weight:600;
}

/* NEW utility row */
.v2-actions-utility {
    display:flex;
    gap:12px;
    padding-left: 20px;
    padding-right: 20px;

    margin-top:20px;
    margin-bottom:16px;
}

.v2-btn-utility {

    margin:6px;
    padding:13px 18px;
    text-decoration: none;

    border-radius:8px;
    border:1px solid #ccc;

    background:#f5f5f5;
    justify-content: center;   /* horizontal center */

}


.v2-datetime-block {
    text-align:center;
    margin-top:10px;
    margin-bottom:16px;
}

/* date */
.v2-datetime-date {
    font-size:16px;
    font-weight:500;
    color:#ffffff;   /* assuming on green bg */
    margin-bottom:2px;
}

/* time */
.v2-datetime-time {
    font-size:14px;
    color:rgba(255,255,255,0.85);
}









.v2-page {
    padding: 20px;
    background: #f6f8fb;
    font-family: Arial, sans-serif;
}

.v2-header h1 {
    font-size: 28px;
    margin-bottom: 4px;
}

.v2-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.v2-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.v2-card {
    width: calc(50% - 6px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.v2-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.v2-card-image {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.v2-logo {
    position: absolute;
    top: 8px;
    left: 8px;
}

.v2-logo-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    padding: 2px;
}

.v2-card-body {
    padding: 8px 10px;
}

.v2-card-name {
    font-size: 14px;
    font-weight: bold;
    color: #1f2937;
}

.v2-card-tagline {
    font-size: 12px;
    color: #4b5563;
    margin-top: 2px;
}

.v2-card-location {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}

.v2-card-added {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 3px;
}
