﻿/* latin-ext */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/outfit/v15/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61O4i0ExAo.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/outfit/v15/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61O4a0Ew.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
    /* Theme Colors */
    --primary: #7C3AED;
    --primary-light: #F3E8FF;
    --primary-dark: #5B21B6;
    --secondary: #2563EB;
    --secondary-light: #DBEAFE;
    --secondary-dark: #1D4ED8;
    /* Gradient */
    --gradient-primary: linear-gradient( 135deg, var(--primary), var(--secondary) );
    --gradient-light: linear-gradient( 135deg, var(--primary-light), var(--secondary-light) );
    --gradient-card: linear-gradient( 135deg, rgba(124,58,237,.08), rgba(37,99,235,.08) );
    /* Background */
    --body-bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --surface: #F8FAFC;
    /* Text */
    --text: #111827;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --text-faint: #9AA5B5;
    /* Border */
    --border: #E8ECF3;
    --border-light: #F1F5F9;
    /* STATUS COLORS */
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #0EA5E9;
    /* Shadow */
    --shadow-sm: 0 6px 18px rgba(15,23,42,.05);
    --shadow: 0 12px 30px rgba(15,23,42,.08);
    --shadow-lg: 0 18px 40px rgba(15,23,42,.12);
    /* Radius */
    --radius-sm: 16px;
    --radius: 24px;
    --radius-lg: 32px;
    /* Spacing scale (reduced) */
    --space-xs: 6px;
    --space-sm: 10px;
    --space-md: 14px;
    --space-lg: 18px;
    --space-xl: 24px;
    /* Card frame (keeps the app feeling like a phone card on any screen) */
    --card-max-width: 480px;
    --page-bg: #F8FAFC;
}
* {
    box-sizing: border-box;
}
body {
    background: var(--secondary-light);
    font-family: Inter,sans-serif;
    color: var(--text);
    overflow-x: hidden;
}
.custom-navbar {
    height: 65px;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(16, 24, 40, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
    /* Optional: a soft inner highlight for extra "glass" realism */
    .custom-navbar::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
        pointer-events: none;
    }
/* Logo + Brand */
.navbar-logo {
    width: 29px;
    height: 29px;
    object-fit: contain;
}
.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}
/* Action group wrapper — modern "pill container" look */
.nav-actions {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}
/* Icon buttons (apps grid, notifications etc) */
.nav-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .2s ease;
}
    .nav-icon-btn i {
        font-size: 18px;
    }
    .nav-icon-btn:hover {
        background: #ffffff;
        color: #111827;
        box-shadow: 0 2px 8px rgba(16, 24, 40, .08);
    }
    .nav-icon-btn .badge-dot {
        position: absolute;
        top: 7px;
        right: 8px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #ff5a1f;
        border: 2px solid #f8f9fb;
    }
/* ===== User toggle button ===== */
.user-toggle-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    border: 1px solid #eef0f3;
    padding: 5px 12px 5px 5px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14.5px;
    color: #1f2937;
    transition: all .2s ease;
}
    .user-toggle-btn:hover {
        border-color: #e5e7eb;
        box-shadow: 0 2px 8px rgba(16, 24, 40, .08);
    }
    .user-toggle-btn .chevron {
        font-size: 12px;
        color: #9ca3af;
        transition: transform .2s ease;
        margin-left: 2px;
    }
    .user-toggle-btn[aria-expanded="true"] .chevron {
        transform: rotate(180deg);
    }
/* Avatar circle with initial letter — gradient, modern */
.avatar-initial {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e2a5e 0%, #3b4b8f 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}
/* text shown next to avatar on desktop only */
.user-toggle-btn .user-name-text {
    display: inline-block;
}
/* Apps dropdown */
/* Apps dropdown - modern card style */
.apps-dropdown {
    width: 230px;
    padding: 12px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(16, 24, 40, .18), 0 4px 12px rgba(16, 24, 40, .08);
    margin-top: 14px !important;
}
.app-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 12px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14.5px;
    color: #1f2937;
    transition: all .2s cubic-bezier(.4,0,.2,1);
}
    .app-item + .app-item {
        margin-top: 2px;
    }
    .app-item:hover {
        background: #f8f9fb;
        transform: translateX(2px);
    }
    /* icon chip container */
    .app-item .icon-wrap {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all .2s ease;
    }
    .app-item i {
        font-size: 18px;
        color: #fff;
    }
    /* per-app colors, matching a modern soft-gradient palette */
    .app-item.avatar-app .icon-wrap {
        background: linear-gradient(135deg, #7c3aed, #2563eb);
        box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
    }
    .app-item.buildify-app .icon-wrap {
        background: linear-gradient(135deg, #f59e0b, #ef4444);
        box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    }
    .app-item.crm-app .icon-wrap {
        background: linear-gradient(135deg, #06b6d4, #8b5cf6);
        box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
    }
    .app-item:hover .icon-wrap {
        transform: scale(1.07);
    }
/* User dropdown panel */
.user-dropdown-menu {
    width: 250px;
    padding: 0 0 8px 0;
    border: none;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, .14);
    overflow: hidden;
    margin-top: 12px !important;
}
.user-dropdown-header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid #f1f2f4;
    display: flex;
    align-items: center;
    gap: 12px;
}
    .user-dropdown-header .avatar-initial {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .user-dropdown-header .welcome-label {
        font-size: 12.5px;
        color: #9ca3af;
        font-weight: 500;
    }
    .user-dropdown-header .welcome-name {
        font-size: 15px;
        font-weight: 700;
        color: #111827;
    }
.user-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: background .15s ease;
}
    .user-dropdown-menu .dropdown-item i {
        font-size: 16px;
        color: #6b7280;
        width: 18px;
        text-align: center;
    }
    .user-dropdown-menu .dropdown-item:hover {
        background: #f9fafb;
    }
    .user-dropdown-menu .dropdown-item.text-danger i {
        color: #dc2626;
    }
    .user-dropdown-menu .dropdown-item.text-danger:hover {
        background: #fef2f2;
    }
/* ===== Mobile: collapse name text, show only avatar circle ===== */
@media (max-width: 576px) {
    .custom-navbar {
        height: 60px;
    }
    .navbar-logo {
        width: 30px;
        height: 30px;
    }
    .brand-name {
        font-size: 16px;
    }
    .nav-actions {
        padding: 3px;
        gap: 2px;
        border-radius: 14px;
    }
    .nav-icon-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
        .nav-icon-btn i {
            font-size: 16px;
        }
    .user-toggle-btn {
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none !important;
    }
        .user-toggle-btn .user-name-text,
        .user-toggle-btn .chevron {
            display: none; /* hide name + chevron on mobile */
        }
    .avatar-initial {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}
.card-container {
    max-width: var(--card-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    width: 100%;
}
.hero-section {
    padding: 0;
    /*    background: var(--body-bg);*/
}
.hero-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-header {
    padding: var(--space-md);
}
.hero-icon {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--surface);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}
    .hero-icon:hover {
        background: var(--primary);
        color: #fff;
    }
.hero-icon-wide {
    width: auto;
    padding: 0 14px;
}
.view-count {
    font-size: 12px;
    font-weight: 700;
}
.btn-section-edit {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--primary);
    font-size: 13px;
    cursor: pointer;
    transition: all .25s ease;
}
    .btn-section-edit:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-1px);
    }
/* Bigger image / logo area */
.hero-cover {
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}
    .hero-cover .btn-section-edit {
        position: absolute;
        top: 90%;
        right: 16px;
        transform: translateY(-50%);
    }
.hero-pattern {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient( circle, var(--secondary-light) 0%, transparent 70% );
    top: -90px;
    right: -70px;
    opacity: .9;
}
.hero-cover::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -70px;
    border-radius: 50%;
    background: radial-gradient( circle, var(--primary-light) 0%, transparent 70% );
}
.company-logo {
    width: 160px;
    height: 160px;
    background: var(--card-bg);
    border-radius: 34px;
    padding: 10px;
    margin: 10px 0 var(--space-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
    .company-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 26px;
    }
.hero-content {
    padding: 20px 20px 18px;
}
.business-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
}
.company-title {
    font-size: clamp(24px, 7vw, 32px);
    font-weight: 700;
    margin: 14px 0 4px;
    color: var(--text);
    word-break: break-word;
}
.company-subtitle {
    color: var(--text-light);
    font-size: 14px;
}
.hero-location {
    margin-top: 12px;
    font-weight: 600;
    color: var(--text);
}
.hero-owner {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    row-gap: 4px;
}
    .hero-owner span {
        width: 5px;
        height: 5px;
        background: var(--primary);
        border-radius: 50%;
        flex-shrink: 0;
    }
.hero-btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    height: 48px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
    .hero-btn-primary:hover {
        background: var(--primary-dark);
    }
.hero-btn-light {
    background: var(--surface);
    color: var(--text);
    height: 48px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
    .hero-btn-light:hover {
        background: var(--primary-light);
    }
.scroll-down {
    text-align: center;
    padding-bottom: 12px;
    font-size: 20px;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}
/* Quick Access & Business Information */
.business-card-section {
    margin-top: 24px;
}
.business-card-box {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
}
    .business-card-box:last-child {
        margin-bottom: 0;
    }
.section-divider {
    margin: 28px 0;
    border: none;
    border-top: 1px solid rgba(0,0,0,.08);
}
/*==================================
        QUICK ACTION
===================================*/
.quick-action-section {
    margin-top: var(--space-lg);
}
.section-title {
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    row-gap: var(--space-xs);
}
    .section-title h5 {
        font-weight: 700;
        margin: 0;
        color: var(--text);
    }
    .section-title small {
        color: var(--text-muted);
    }
.glass-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.75);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    box-shadow: 0 8px 20px rgba(15,23,42,.05), inset 0 1px 1px rgba(255,255,255,.8);
    transition: .35s ease;
    white-space: nowrap;
}
    .glass-badge:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }
.quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 20px;
    height: 92px;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    transition: .3s;
    gap: 8px;
    text-align: center;
}
    .quick-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }
    .quick-card span,
    .quick-card h6,
    .quick-card p,
    .quick-card .quick-card-title {
        width: 100%;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
.quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: var(--space-xs);
}
.quick-card span {
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 0 4px;
}
.bg-primary-subtle {
    background-color: #e7ecff;
}
.bg-success-subtle {
    background-color: #d3f6e0;
}
    .bg-success-subtle i {
        color: #1da851;
    }
.bg-info-subtle {
    background-color: #e6f6fe;
}
.bg-warning-subtle {
    background-color: #fff6e0;
}
.bg-danger-subtle {
    background-color: #fdecec;
}
.bg-secondary-subtle {
    background-color: #eef0f2;
}
.instagram-bg {
    background-color: #fdecf3;
}
    .instagram-bg i {
        color: #e1306c;
    }
.facebook-bg {
    background-color: #e7ecff;
}
    .facebook-bg i {
        color: #1877f2;
    }
/*=================================
Business Information
=================================*/
.business-info-section {
    margin-top: var(--space-xl);
}
.section-heading {
    margin-bottom: var(--space-md);
}
    .section-heading h4 {
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--text);
    }
    .section-heading p {
        color: var(--text-muted);
        font-size: 13px;
    }
.info-card {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.45);
    margin-bottom: var(--space-sm);
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    text-decoration: none;
    transition: .3s;
}
    .info-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }
.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.info-content {
    flex: 1;
    padding-left: var(--space-md);
    min-width: 0;
}
    .info-content small {
        display: block;
        color: var(--text-faint);
        margin-bottom: 3px;
    }
    .info-content h6 {
        margin: 0;
        color: var(--text);
        font-weight: 600;
        line-height: 1.5;
        word-break: break-word;
    }
.arrow {
    color: var(--text-faint);
    flex-shrink: 0;
}
/* Product Carousels styling */
/*=============================
Business Highlights
=============================*/
.highlights-section {
    margin-top: var(--space-xl);
}
.experience-card {
    background: linear-gradient(135deg, var(--primary-light), var(--card-bg));
    padding: var(--space-lg);
    border-radius: var(--radius);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}
    .experience-card h2 {
        font-size: 38px;
        font-weight: 700;
        color: var(--primary);
        margin: 0;
    }
    .experience-card span {
        font-size: 13px;
        font-weight: 600;
        color: var(--text);
    }
    .experience-card p {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-light);
        white-space: normal;
        flex: 1 1 160px;
        min-width: 0;
    }
.mini-stat {
    background: var(--card-bg);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
    .mini-stat h3 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--text);
    }
    .mini-stat p {
        margin: 0;
        font-size: 12px;
        color: var(--text-light);
    }
.about-card {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
    .about-card h5 {
        font-weight: 700;
        margin-bottom: var(--space-sm);
        color: var(--text);
    }
    .about-card p {
        line-height: 1.7;
        color: var(--text-light);
        margin: 0;
    }
/* OUR SERVICES */
.service-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--card-bg));
    border-radius: var(--radius);
    padding: 22px 18px;
    min-height: 110px;
    overflow: hidden;
    border: 1px solid rgba(124,58,237,.08);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
    .service-card::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(124,58,237,.05);
        right: -40px;
        top: -40px;
    }
    .service-card h6 {
        position: relative;
        margin: 0 0 8px;
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
    }
    .service-card p {
        position: relative;
        margin: 0;
        font-size: 13px;
        color: var(--text-light);
        line-height: 1.6;
    }
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        background: var(--gradient-primary);
    }
        .service-card:hover h6,
        .service-card:hover p {
            color: #fff;
        }
        .service-card:hover::before {
            background: rgba(255,255,255,.10);
        }
/* Share Area Link Box */
.share-section {
    margin-top: var(--space-xl);
}
.share-card {
    background: var(--card-bg);
    padding: var(--space-lg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.copy-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--body-bg);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}
.copy-text {
    font-weight: 600;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.qr-wrapper {
    text-align: center;
    margin-bottom: var(--space-lg);
}
    .qr-wrapper img {
        width: 160px;
        height: 160px;
        max-width: 100%;
        border-radius: var(--radius-sm);
        padding: var(--space-sm);
        background: var(--card-bg);
        box-shadow: var(--shadow-sm);
    }
    .qr-wrapper span {
        display: block;
        margin-top: var(--space-sm);
        font-size: 13px;
        color: var(--text-light);
    }
.quick-share {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}
.share-icon {
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    transition: .3s;
}
    .share-icon:hover {
        background: var(--primary);
        color: #fff;
    }
    .share-icon i {
        font-size: 20px;
        margin-bottom: var(--space-xs);
    }
    .share-icon small {
        font-weight: 600;
    }
.wa-share-box {
    background: var(--surface);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
}
    .wa-share-box .input-group {
        flex-wrap: nowrap;
    }
    .wa-share-box .form-control {
        min-width: 0;
    }
/* FOOTER */
.footer-section {
    padding: var(--space-xl) 0 90px;
}
.footer-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.footer-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 18px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: var(--space-md);
}
.footer-thankyou h4 {
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
}
.footer-thankyou p {
    color: var(--text-light);
    line-height: 1.6;
}
.footer-divider {
    height: 1px;
    background: var(--border);
    margin: var(--space-lg) 0;
}
.powered-by small {
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.powered-by h3 {
    margin: var(--space-sm) 0 6px;
    font-weight: 700;
    color: var(--text);
}
.powered-by p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}
.powered-by .btn {
    height: 36px;
    padding-left: 26px;
    padding-right: 26px;
    border-radius: 50px;
    font-weight: 600;
    background: var(--primary);
    border-color: var(--primary);
}
.copyright {
    font-size: 12px;
    color: var(--text-faint);
    line-height: 1.7;
}
.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    transition: .3s;
}
    .nav-item i {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .nav-item.active {
        color: var(--primary);
    }
.center-btn {
    width: 58px;
    height: 58px;
    background: var(--primary);
    color: #fff !important;
    border-radius: 18px;
    margin-top: -35px;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(79,70,229,.35);
}
    .center-btn i {
        margin: 0;
        font-size: 22px;
    }
/*==============================
    PREMIUM BOTTOM NAVIGATION
===============================*/
.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: var(--space-md);
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 400px;
    height: 68px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
}
.nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: .3s;
    position: relative;
}
.nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
    .nav-icon i {
        font-size: 18px;
    }
.nav-link span {
    font-size: 10px;
    margin-top: 2px;
    font-weight: 600;
}
.nav-link.active {
    color: var(--primary);
}
    .nav-link.active .nav-icon {
        background: var(--primary-light);
    }
.nav-link:hover {
    color: var(--primary);
}
    .nav-link:hover .nav-icon {
        background: var(--primary-light);
    }
.share-circle {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: #fff;
    margin-top: -36px;
    box-shadow: 0 15px 30px rgba(79,70,229,.35);
    transition: .3s;
}
    .share-circle:hover {
        transform: translateY(-4px);
        background: var(--primary-dark);
    }
    .share-circle i {
        font-size: 20px;
    }
@media(max-width:420px) {
    .bottom-nav {
        height: 62px;
        border-radius: 20px;
    }
    .nav-link span {
        font-size: 9px;
    }
    .share-circle {
        width: 50px;
        height: 50px;
        margin-top: -32px;
    }
}
/* Zoom Overlay Modal */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
}
.zoom-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 650px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.zoom-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 650px;
    text-align: center;
    color: #e2e8f0;
    padding: var(--space-md) 0;
    font-size: 14px;
    font-weight: 500;
}
.zoom-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}
/* Toast Alert */
.toast-popup {
    position: fixed;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    background: var(--text);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    max-width: calc(100% - 32px);
    text-align: center;
}
    .toast-popup.show {
        opacity: 1;
        visibility: visible;
    }
/* ============================
   RESPONSIVE FIXES
   (keeps the exact same look on
   a normal phone width; only
   adapts very small phones and
   large/tablet+desktop screens)
============================= */
/* Small phones (iPhone SE / 360px and under) */
@media (max-width: 360px) {
    .hero-content {
        padding: 16px 14px 14px;
    }
    .company-logo {
        width: 130px;
        height: 130px;
        margin: 8px 0 var(--space-md);
        border-radius: 28px;
    }
    .hero-cover {
        height: 170px;
    }
    .quick-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .quick-card {
        height: 82px;
    }
    .card-container {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }
}
/* Tablets and up: keep the phone-card look centered instead of
   stretching the layout edge-to-edge */
@media (min-width: 576px) {
    body {
        background: var(--secondary-light);
    }
    .card-container {
        padding-top: var(--space-lg);
    }
    .hero-cover {
        height: 220px;
    }
    .company-logo {
        width: 170px;
        height: 170px;
    }
}
