/*BASE*/
body {
    margin: 0;
    padding: 0;
}
/*NAVBAR*/
.navbar {/*index.php*/
    background: white;
    padding: 20px 40px;
}
.nav-container {/*index.php*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {/*index.php*/
    display: flex;
    align-items: center;
}
.nav-logo img {/*index.php*/
    height: 100px;
    width: auto;
    display: block;
}
.nav-links {/*index.php*/
    display: flex;
    gap: 15px;
    align-items: center;
}
.nav-links a {/*index.php*/
    text-decoration: none;
    color: #080619;
    font-weight: 500;
}
.nav-links a:hover {/*index.php*/
    background: linear-gradient(90deg, #5de0e6, #004aad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links a:not(:last-child)::after {/*index.php*/
    content: "";
    display: inline-block;
    height: 16px;
    width: 1px;
    background: #ccc;
    margin-left: 20px;
}
.nav-link-home {/*index.php*/
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
}
.nav-link-about {/*index.php*/
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
}
.nav-link-in {/*index.php*/
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
}
.nav-link-up {
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-link-up:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: white;
}
.nav-link-up:active {
    transform: scale(0.96);
}
/*HERO*/
.hero {/*index.php*/
    width: 100%;
}
.hero img {/*index.php*/
    width: 100%;
    height: auto;
    display: block;
}
/*INFO*/
.info-sec {/*index.php*/
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    text-align: center;
    padding: 80px 20px;
}
.info-sec p {/*index.php*/
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 30px;
    font-weight: lighter;
    color: #333;
}
.info-sec > img {/*index.php*/
    margin: 40px auto 0;
}
/*HOOK*/
.hook {/*index.php*/
    padding: 100px 20px;
    background: #f7f7f7;
}
.hook-container {/*index.php*/
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hook-left {/*index.php*/
    flex: 1;
}
.hook-logo {/*index.php*/
    width: 450px;
    margin-bottom: 35px;
    background: transparent;
    mix-blend-mode: multiply;
}
.hook-list p {/*index.php*/
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin: 10px 0;
}
.hook-divider {/*index.php*/
    height: 2px;
    background: #ccc;
    margin: 20px 0;
}
.hook-vertical-line {/*index.php*/
    width: 2px;
    height: 300px;
    background: #ccc;
}
.hook-right {/*index.php*/
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.hook-btn {/*index.php*/
    display: inline-block;
    padding: 20px 40px;
    border-radius: 40px;
    font-size: 22px;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hook-btn:hover {/*index.php*/
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.hook-btn:active {/*index.php*/
    transform: scale(0.97);
}
.hook-btn.customer {/*index.php*/
    background: linear-gradient(90deg, #004aad, #b56be3);
}
.hook-btn.contractor {/*index.php*/
    background: linear-gradient(90deg, #5de0e6, #004aad);
}
.hook-btn strong {/*index.php*/
    display: block;
    font-size: 26px;
}
@media (max-width: 900px) {/*index.php*/
    .hook-container {/*index.php*/
        flex-direction: column;
        text-align: center;
    }
    .hook-vertical-line {/*index.php*/
        display: none;
    }
}
/*FOOTER*/
.footer {/*index.php*/
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #cbd5f5;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

/*COMPANY BROWSING*/
.company-list,
.employee-list {
    display: grid;
    gap: 16px;
}

.company-card {
    display: block;
    text-decoration: none;
    color: #0f172a;
    border: 1px solid #dbeafe;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 18px;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.company-card strong,
.company-card span,
.company-card small {
    display: block;
}

.company-card span,
.company-card small {
    margin-top: 6px;
    color: #475569;
}

.company-card:hover,
.company-card.selected {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(8, 6, 25, 0.08);
    border-color: #5de0e6;
}

.employee-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 18px;
}

.employee-card.active {
    border-color: #004aad;
    box-shadow: 0 12px 24px rgba(0, 74, 173, 0.08);
}

.employee-avatar {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.employee-avatar.small {
    width: 60px;
    height: 60px;
}

.employee-content {
    flex: 1;
}

.employee-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.employee-role {
    background: #e0f2fe;
    color: #004aad;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.employee-role.inline {
    margin-left: 8px;
}

.employee-trade,
.employee-bio,
.employee-availability {
    margin: 8px 0;
    color: #475569;
    line-height: 1.5;
}

.selected-employee-summary {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 0 0 18px;
}

.independent-preview-list {
    margin-top: 20px;
}

.independent-preview-list h4 {
    margin: 0 0 12px;
    color: #080619;
}

.independent-preview-card {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: #0f172a;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.company-profile-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    margin-bottom: 16px;
}

.company-logo-preview,
.profile-company-logo {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 18px;
    flex-shrink: 0;
}

.profile-company-logo-wrap {
    margin: 14px 0;
}

.company-photo-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.company-photo-thumb {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 16px;
}

.owner-admin-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 32px;
    margin-top: 12px;
    margin-bottom: 32px;
}

.owner-team-panel,
.owner-profile-panel {
    height: 100%;
    min-height: 260px;
    box-sizing: border-box;
}

.employee-card-link {
    text-decoration: none;
    color: inherit;
}

.owner-selected-employee {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
    border-radius: 18px;
}

.owner-employee-form textarea {
    width: 100%;
    min-height: 140px;
    padding: 14px 16px;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    margin-bottom: 16px;
    resize: vertical;
}

.calendar-nav-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.owner-calendar-subtitle {
    margin: 6px 0 0;
}

.search-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.search-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.search-reset-link {
    color: #004aad;
    text-decoration: none;
    font-weight: 600;
}

.search-results-section + .search-results-section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e5e7eb;
}

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

.search-results-header h4 {
    margin: 0;
    color: #080619;
}

.search-results-header span {
    color: #64748b;
    font-size: 14px;
}

.company-description-preview {
    display: inline-block;
    margin-top: 6px;
    color: #64748b;
    line-height: 1.5;
}

.search-suggestion-box {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.search-suggestion-box h4 {
    margin: 0 0 10px;
    color: #080619;
}

.search-suggestion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-suggestion-chip {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #004aad;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.customer-calendar-event {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    color: #0f172a;
    background: rgba(93, 224, 230, 0.14);
    border-radius: 10px;
    padding: 6px 8px;
}

.booking-finder-card {
    max-width: 420px;
}

.booking-finder-form {
    display: grid;
    gap: 12px;
}

.booking-finder-quick-links {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.booking-finder-quick-links h4 {
    margin: 0 0 10px;
    color: #080619;
}

.booking-finder-link {
    display: block;
    text-decoration: none;
    color: #0f172a;
    padding: 10px 12px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

@media (max-width: 1000px) {
    .owner-admin-grid {
        grid-template-columns: 1fr;
    }

    .search-filter-grid {
        grid-template-columns: 1fr;
    }
}
.footer-container {/*index.php*/
    max-width: 1200px;
    margin: auto;
}
.footer-grid {/*index.php*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-col h4 {/*index.php*/
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}
.footer-col a {/*index.php*/
    display: block;
    text-decoration: none;
    color: #cbd5f5;
    margin: 8px 0;
    font-size: 15px;
    transition: color 0.2s ease;
}
.footer-col a:hover {/*index.php*/
    color: white;
}
.footer-line {/*index.php*/
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 30px 0;
}
.footer-middle {/*index.php*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-socials {/*index.php*/
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-socials img {/*index.php*/
    width: 28px;
    height: 28px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-socials img:hover {/*index.php*/
    transform: scale(1.2);
    opacity: 0.8;
}
.footer-actions a {/*index.php*/
    color: #cbd5f5;
    text-decoration: none;
    margin: 0 10px;
}
.footer-actions a:hover {/*index.php*/
    color: white;
}
.footer-copy {/*index.php*/
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}
@media (max-width: 900px) {/*index.php*/
    .footer-grid {/*index.php*/
        grid-template-columns: 1fr 1fr;
    }
    .footer-middle {/*index.php*/
        flex-direction: column;
        gap: 20px;
    }
}
/*FOUNDERS*/
.founders-hero {
    text-align: center;
    padding: 40px 20px 100px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffffff 55%,
            #B1E8FF 80%,
            #72D6FF 100%
    );
}
.founders-title {
    font-size: 70px;
    font-weight: 200;
    margin-bottom: 60px;
    color: #111;
}
.founders-title strong {
    font-weight: 700;
}
.founders-cards {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.founders-cards {
    display: flex;
    justify-content: center;
    gap: 180px;
    flex-wrap: wrap;
}
.founder-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 20px;
}
.founder-card h2 {
    margin: 15px 0 5px;
    font-weight: 200;
}
.founder-card h2 strong {
    font-weight: 700;
}
.role {
    margin-bottom: 15px;
    font-style: italic;
    color: #A2A3A4;
}
.description {
    margin-top: 40px;
    max-width: 320px;
    line-height: 1.7;
    font-size: 18px;
}
/*ABOUT*/
.about-section {
    padding: 60px 40px 80px;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}
.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text {
    flex: 1;
    max-width: 600px;
}
.about-text h1 {
    font-size: 62px;
    font-weight: 200;
    margin-top: 0;
    margin-bottom: 30px;
}
.about-text strong {
    font-weight: 700;
}
.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}
.about-text ul {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}
.about-text li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #222;
}
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
}
.about-mission {
    padding: 80px 20px 120px;
}
.our-miss {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 15px;
}
.miss {
    max-width: 700px;
    font-family: 'Montserrat', sans-serif;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.7;
    font-size: 20px;
    color: #444;
}
/*LEGAL*/
.legal-section {
    padding: 80px 20px;
    background: #f9f9f9;
}
.legal-container {
    max-width: 900px;
    margin: 0 auto;
}
.legal-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}
.legal-block {
    margin-bottom: 50px;
}
.legal-block h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.legal-block h3 {
    margin-top: 20px;
    font-size: 18px;
}
.legal-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}
.legal-block p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}
.legal-block ul {
    padding-left: 20px;
}
.legal-block li {
    margin-bottom: 8px;
    color: #333;
}
/*AUTH*/
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
}
h2 strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.signup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 78vh;
    padding: 100px 20px;
    box-sizing: border-box;
}
.signup-box {
    width: 100%;
    max-width: 420px;
    padding: 32px;
}
.signup-box, .contractors-box, .search-box, .meeting-box {
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(8, 6, 25, 0.08);
}
.success { color: #0f766e; font-family: 'Montserrat', sans-serif; }
.error { color: #b91c1c; font-family: 'Montserrat', sans-serif; }
input, select, button {
    font-family: 'Montserrat', 'Poppins', sans-serif;
}
button {
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white;
    border: 0;
    border-radius: 8px;
    padding: 12px 18px;
    cursor: pointer;
}
.signup-box input,
.signup-box select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.signup-box button {
    padding: 12px;
    background: linear-gradient(90deg, #4facfe, #00c6ff, #7b2ff7);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.signup-box button:hover {
    background: linear-gradient(90deg, #7b2ff7, #00c6ff, #4facfe);
}
.login-link {
    text-align: center;
    font-size: 14px;
}
.login-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
}
.login-link a:hover {
    text-decoration: underline;
}
.signup-helper-text {
    margin: -4px 0 14px;
    color: #64748b;
    line-height: 1.5;
}
.signup-field-label {
    display: block;
    margin: 0 0 8px;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
}
.signup-role-panel,
.signup-subsection {
    display: none;
}
.signup-role-panel.visible,
.signup-subsection.visible {
    display: block;
}
.signup-role-panel {
    margin-top: 10px;
    padding-top: 10px;
}
.signup-subsection {
    margin-top: 12px;
}
/*DASHBOARD LEGACY*/
.sidebar-logo img {
    width: 235px;
    height: auto;
    display: block;
    margin-bottom: 30px;
}
.dash-container {
    display: flex;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
}
.sidebar {
    width: 220px;
    background: #f4f6f8;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}
.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.sidebar-logo {
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sidebar-links a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.2s;
}
.sidebar-links a:hover {
    color: #004aad;
}
.dash-main {
    flex: 1;
    padding: 30px 40px;
    background: linear-gradient(to bottom, #ffffff, #e8f7ff);
}
.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dash-top h1 {
    font-weight: 200;
}
.dash-top strong {
    font-weight: 700;
}
.profile-icon {
    font-size: 24px;
}
.dash-cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
    background: #f1f1f1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    text-decoration: none;
    color: #080619;
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: pointer;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.card.highlight {
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white;
}
.card:active {
    transform: scale(0.97);
}
.dash-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.contractors-box,
.search-box {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.lines {
    margin-top: 20px;
    height: 100px;
    background: repeating-linear-gradient(
            to bottom,
            #ddd,
            #ddd 2px,
            transparent 2px,
            transparent 20px
    );
}
.search-box input {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #ccc;
}
.meeting-box {
    margin-top: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.enter-btn {
    margin-top: 20px;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}
.enter-btn:hover {
    transform: scale(1.05);
}
.next-call {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}
.meeting-box {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.meeting-img {
    width: 35%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.meeting-content {
    padding: 25px;
}
.meeting-box:hover {
    transform: translateY(-4px);
    transition: 0.3s;
}
.contractor-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.contractor-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}
.contractor-item:hover {
    color: #004aad;
}
/*ELEMENTS*/
.horizontal-line {/*index.php*/
    width: 60%;
    max-width: 900px;
    height: 2px;
    background: #ccc;
    margin: 40px auto;
}
#slider-title {/*index.php*/
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 700;
    background: linear-gradient(90deg, #5de0e6, #004aad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.all-trades-slider {/*index.php*/
    padding: 80px 20px;
    text-align: center;
}
.slider-container {/*index.php*/
    position: relative;
    overflow: hidden;
}
.slider-container::before,
.slider-container::after {/*index.php*/
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.slider-container::before {/*index.php*/
    left: 0;
    background: linear-gradient(to right, white 20%, transparent);
}
.slider-container::after {/*index.php*/
    right: 0;
    background: linear-gradient(to left, white 20%, transparent);
}
.slides {/*index.php*/
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 20px;
    animation: scrollSlider 25s linear infinite;
}
.slides:hover {/*index.php*/
    animation-play-state: paused;
}
.slide {/*index.php*/
    min-width: 300px;
    flex: 0 0 auto;
    text-align: center;
}
.slide img {/*index.php*/
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.slide img:hover {/*index.php*/
    transform: scale(1.05);
}
.slide p {/*index.php*/
    margin-top: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
@keyframes scrollSlider {/*index.php*/
    0% {
        transform: translateX(0);
    }
    100% {/*index.php*/
        transform: translateX(-50%);
    }
}

/*DASHBOARD*/
body {
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    background: #f4f7fb;
}

.success {
    color: #0f766e;
    background: #ecfdf5;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.error {
    color: #b91c1c;
    background: #fef2f2;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.signup-wrapper {
    width: 100%;
    height: auto;
}

.signup-box,
.contractors-box,
.search-box,
.meeting-box,
.card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(8, 6, 25, 0.08);
}

input,
select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
}

button,
.enter-btn-link {
    display: inline-block;
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.signup-box button {
    background: linear-gradient(90deg, #5de0e6, #004aad);
    border-radius: 10px;
}

.signup-box button:hover,
button:hover,
.enter-btn-link:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.dash-container {
    display: flex;
    min-height: 100vh;
    height: auto;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.sidebar {
    width: 240px;
    background: #080619;
    color: white;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-logo img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-links a {
    color: #dbeafe;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-links a:hover {
    background: rgba(93, 224, 230, 0.12);
    color: white;
}

.dash-main {
    flex: 1;
    padding: 32px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dash-top h1 {
    margin: 0;
    color: #080619;
    font-weight: 200;
}

.dash-top strong {
    font-weight: 700;
}

.profile-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.top-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #080619;
    font-weight: 700;
}

.top-profile-link:hover {
    opacity: 0.9;
}

.top-profile-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: linear-gradient(90deg, #5de0e6, #004aad);
    box-shadow: 0 8px 18px rgba(0, 74, 173, 0.18);
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
    margin-bottom: 32px;
}

.card {
    min-height: 74px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #080619;
    font-weight: 600;
}

.card.highlight {
    background: linear-gradient(90deg, #e0f7ff, #eef2ff);
    color: #080619;
}

.tracker-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: left;
}

.tracker-label {
    font-size: 15px;
    font-weight: 700;
    color: #475569;
}

.tracker-value {
    font-size: 34px;
    font-weight: 800;
    color: #080619;
    letter-spacing: -0.02em;
}

.dash-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    margin-top: 30px;
    margin-bottom: 24px;
}

.schedule-layout {
    align-items: start;
}

.contractors-box,
.search-box,
.meeting-box,
.signup-box {
    padding: 24px;
}

.contractors-box h3,
.search-box h3,
.signup-box h2 {
    margin-top: 0;
    color: #080619;
}

.contractor-item {
    display: block;
    text-decoration: none;
    color: #1f2937;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contractor-item:last-child {
    border-bottom: 0;
}

.search-box input {
    margin-top: 0;
    border-radius: 10px;
}

.search-note,
.next-call {
    color: #475569;
    line-height: 1.5;
}

.meeting-box {
    display: flex;
    gap: 24px;
    align-items: center;
    text-align: left;
}

.meeting-img {
    width: 320px;
    max-width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.meeting-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.slot-form {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.slot-form:last-child {
    border-bottom: 0;
}

.slot-line {
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.5;
}

.appointments-box {
    margin-top: 24px;
}

.appointment-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
}

.appointment-row:last-child {
    border-bottom: 0;
}

/*DASHBOARD RESPONSIVE*/
@media (max-width: 1100px) {
    .dash-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dash-row {
        grid-template-columns: 1fr;
    }

    .appointment-row {
        grid-template-columns: 1fr;
    }

    .meeting-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 800px) {
    .dash-container {
        flex-direction: column;
    }

    .sidebar {
        width: auto;
    }

    .dash-main {
        padding: 20px;
    }

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

/*CALENDAR*/
.calendar-panel {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(8, 6, 25, 0.08);
    margin-top: 10px;
}

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

.calendar-header h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #080619;
}

.calendar-nav {
    text-decoration: none;
    color: #004aad;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    background: #eef6ff;
    transition: all 0.2s ease;
}

.calendar-nav:hover {
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
}

.calendar-day-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    padding-bottom: 4px;
}

.calendar-cell {
    min-height: 115px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e7f7;
    border-radius: 18px;
    padding: 14px;
    text-decoration: none;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.calendar-cell:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(8, 6, 25, 0.08);
    border-color: #5de0e6;
}

.calendar-cell.selected {
    background: linear-gradient(180deg, #e8f7ff 0%, #d9efff 100%);
    border: 2px solid #004aad;
}

.calendar-cell.today {
    box-shadow: inset 0 0 0 2px #5de0e6;
}

.calendar-cell.past {
    background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    border-color: #d1d5db;
    color: #94a3b8;
    pointer-events: none;
    box-shadow: none;
}

.calendar-cell.past .calendar-date-number,
.calendar-cell.past .calendar-meta {
    color: #94a3b8;
}

.calendar-cell.empty {
    visibility: hidden;
    pointer-events: none;
}

.calendar-date-number {
    font-size: 18px;
    font-weight: 700;
    color: #080619;
}

.calendar-meta {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.calendar-meta.booked {
    color: #004aad;
    font-weight: 700;
}

.calendar-bottom {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 22px;
    margin-top: 24px;
}

.calendar-form-card,
.calendar-day-card {
    background: white;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 12px 35px rgba(8, 6, 25, 0.08);
}

.calendar-form-card h2,
.calendar-day-card h3 {
    margin-top: 0;
    color: #080619;
}

.calendar-form-label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 600;
}

.calendar-form-card input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    box-sizing: border-box;
}

.calendar-form-card button {
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
}

.calendar-form-card button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 74, 173, 0.18);
}

/*DAY SLOTS*/
.day-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #0f172a;
}

.day-slot:last-child {
    border-bottom: none;
}

.day-slot-status {
    font-weight: 700;
    color: #004aad;
}

.day-slot-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.delete-slot-form {
    margin: 0;
}

.delete-slot-btn {
    background: #eef2ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.delete-slot-btn:hover {
    background: #dbeafe;
    transform: none;
    box-shadow: none;
}

/*PROFILE*/
.profile-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    margin-top: 10px;
}

.profile-preview-card,
.profile-form-card,
.profile-gallery-card {
    background: white;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 12px 35px rgba(8, 6, 25, 0.08);
}

.profile-preview-card h3,
.profile-form-card h2,
.profile-gallery-card h3 {
    margin-top: 0;
    color: #080619;
}

.profile-role-label {
    color: #64748b;
    font-weight: 600;
    margin-bottom: 18px;
}

.profile-avatar-wrap {
    margin-bottom: 20px;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #e0f7ff, #dbeafe);
}

.profile-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    font-weight: 700;
}

.profile-preview-text {
    color: #475569;
    line-height: 1.7;
}

.profile-form-card textarea,
.profile-form-card input[type="text"],
.profile-form-card input[type="url"],
.profile-form-card input[type="file"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
}

.profile-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

.profile-gallery-card {
    margin-top: 24px;
}

.profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.profile-gallery-item {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 14px;
}

.profile-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    margin-bottom: 12px;
}

.profile-photo-delete-form {
    margin: 0;
}

/*PROFILE RESPONSIVE*/
@media (max-width: 1000px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .profile-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/*CALENDAR RESPONSIVE*/
@media (max-width: 1000px) {
    .calendar-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .calendar-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .calendar-day-label {
        display: none;
    }
    .calendar-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
/*CUSTOMER BOOKING*/
.customer-slot-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 16px;
}
.customer-slot-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.customer-slot-badge {
    background: #e0f2fe;
    color: #004aad;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}
/*TIME PICKER*/
.time-picker-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}
.time-picker-row select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    box-sizing: border-box;
    background: #fff;
    font-size: 15px;
}
/*FORM NOTES*/
.auto-slot-note {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 4px 0 18px;
}

/*CALL WINDOW*/
.call-window-label {
    display: inline-block;
    color: #475569;
    background: #eef6ff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}

/*INBOX*/
.inbox-summary-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tracker-value.text-only {
    font-size: 28px;
}

.inbox-page-card {
    margin-top: 12px;
}

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

.inbox-filter-links {
    display: flex;
    gap: 10px;
}

.inbox-filter-links a {
    text-decoration: none;
    color: #004aad;
    background: #eef6ff;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.inbox-filter-links a.active {
    background: linear-gradient(90deg, #5de0e6, #004aad);
    color: white;
}

.inbox-thread-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inbox-message-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.inbox-message-content {
    flex: 1;
}

.inbox-message-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    color: #0f172a;
}

/*INBOX RESPONSIVE*/
@media (max-width: 700px) {
    .inbox-summary-cards {
        grid-template-columns: 1fr;
    }

    .inbox-header-row,
    .inbox-message-top,
    .inbox-message-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*IPHONE RESPONSIVE*/
@media (max-width: 640px) {
    html {
        -webkit-text-size-adjust: 100%;
    }

    body {
        overflow-x: hidden;
        background: #eef5ff;
    }

    .navbar {
        padding: 14px 18px;
    }

    .nav-container {
        align-items: flex-start;
        gap: 14px;
    }

    .nav-logo img {
        height: 62px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px 12px;
        font-size: 13px;
    }

    .nav-links a:not(:last-child)::after {
        display: none;
    }

    .nav-link-up {
        padding: 7px 12px;
        border-radius: 8px;
    }

    .hero img {
        min-height: 260px;
        object-fit: cover;
    }

    .info-sec {
        padding: 42px 18px;
    }

    .info-sec p {
        font-size: 19px;
        line-height: 1.55;
    }

    .info-sec > img {
        width: 100%;
        height: auto;
    }

    .hook {
        padding: 54px 18px;
    }

    .hook-logo {
        width: min(100%, 300px);
        margin-bottom: 22px;
    }

    .hook-list p {
        font-size: 16px;
        line-height: 1.45;
    }

    .hook-right {
        width: 100%;
        gap: 16px;
    }

    .hook-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 22px;
        font-size: 17px;
        border-radius: 18px;
    }

    .hook-btn strong {
        font-size: 21px;
    }

    #slider-title {
        font-size: 34px;
    }

    .all-trades-slider {
        padding: 52px 12px;
    }

    .slide {
        min-width: 230px;
    }

    .slide img {
        height: 170px;
    }

    .footer {
        padding: 44px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-middle,
    .footer-actions {
        align-items: flex-start;
        text-align: left;
    }

    .footer-actions a {
        display: inline-block;
        margin: 8px 12px 0 0;
    }

    .about-section,
    .founders-hero,
    .legal-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-container {
        flex-direction: column;
        gap: 34px;
    }

    .about-text h1,
    .founders-title {
        font-size: 40px;
        line-height: 1.08;
    }

    .founders-cards {
        gap: 38px;
    }

    .founder-card img {
        width: 220px;
        height: 220px;
        border-radius: 22px;
    }

    .description,
    .miss {
        font-size: 16px;
    }

    .signup-wrapper {
        min-height: calc(100vh - 92px);
        padding: 34px 16px 54px;
        align-items: flex-start;
    }

    .signup-box {
        max-width: none;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .signup-box h2 {
        font-size: 25px;
        margin-bottom: 14px;
    }

    input,
    select,
    button,
    .enter-btn-link {
        min-height: 44px;
        font-size: 16px;
    }

    .dash-container {
        display: block;
        min-height: 100vh;
    }

    .sidebar {
        position: sticky;
        top: 0;
        z-index: 20;
        width: auto;
        padding: 14px 14px 12px;
        gap: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .sidebar-logo {
        margin: 0;
        justify-content: flex-start;
    }

    .sidebar-logo img {
        max-width: 118px;
        margin: 0;
    }

    .sidebar-links {
        display: flex;
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding: 4px 0 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sidebar-links::-webkit-scrollbar {
        display: none;
    }

    .sidebar-links a {
        flex: 0 0 auto;
        padding: 9px 12px;
        border-radius: 999px;
        background: rgba(255,255,255,0.06);
        font-size: 13px;
        white-space: nowrap;
    }

    .dash-main {
        padding: 18px 14px 34px;
    }

    .dash-top {
        gap: 14px;
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .dash-top h1 {
        font-size: 28px;
        line-height: 1.12;
    }

    .top-profile-link span {
        display: none;
    }

    .top-profile-avatar,
    .profile-icon {
        width: 44px;
        height: 44px;
    }

    .dash-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 16px;
        margin-bottom: 18px;
    }

    .card {
        min-height: 88px;
        padding: 16px 12px;
        border-radius: 16px;
    }

    .tracker-card {
        gap: 8px;
    }

    .tracker-label {
        font-size: 12px;
        line-height: 1.3;
    }

    .tracker-value {
        font-size: 28px;
        letter-spacing: 0;
    }

    .dash-row,
    .owner-admin-grid,
    .profile-layout,
    .calendar-bottom {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    .contractors-box,
    .search-box,
    .meeting-box,
    .profile-preview-card,
    .profile-form-card,
    .profile-gallery-card,
    .calendar-panel,
    .calendar-form-card,
    .calendar-day-card {
        padding: 18px;
        border-radius: 18px;
    }

    .contractors-box h3,
    .search-box h3,
    .calendar-form-card h2,
    .calendar-day-card h3,
    .profile-form-card h2 {
        font-size: 21px;
        line-height: 1.18;
    }

    .search-filter-grid,
    .time-picker-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .search-action-row {
        flex-wrap: wrap;
    }

    .independent-preview-card,
    .employee-card,
    .company-profile-card,
    .selected-employee-summary,
    .owner-selected-employee,
    .inbox-message-card {
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
        border-radius: 16px;
    }

    .employee-avatar,
    .company-logo-preview,
    .profile-company-logo {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .employee-avatar.small {
        width: 54px;
        height: 54px;
    }

    .employee-header,
    .customer-slot-top,
    .search-results-header,
    .inbox-message-top {
        align-items: flex-start;
    }

    .employee-bio,
    .employee-availability,
    .employee-trade,
    .search-note {
        font-size: 14px;
        line-height: 1.45;
    }

    .company-photo-strip,
    .profile-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .company-photo-thumb,
    .profile-gallery-item img {
        height: 118px;
        border-radius: 12px;
    }

    .calendar-panel {
        margin-top: 0;
    }

    .calendar-header {
        gap: 14px;
        margin-bottom: 16px;
    }

    .calendar-header h2 {
        font-size: 26px;
    }

    .calendar-nav-group {
        width: 100%;
        justify-content: space-between;
    }

    .calendar-nav {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, minmax(38px, 1fr));
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .calendar-day-label {
        display: block;
        font-size: 11px;
    }

    .calendar-cell {
        min-height: 78px;
        padding: 8px;
        border-radius: 12px;
        gap: 4px;
    }

    .calendar-date-number {
        font-size: 15px;
    }

    .calendar-meta,
    .customer-calendar-event {
        font-size: 10px;
        line-height: 1.25;
        padding: 4px 5px;
    }

    .day-slot {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .day-slot-actions {
        width: 100%;
        justify-content: space-between;
    }

    .appointment-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }

    .profile-avatar {
        width: 136px;
        height: 136px;
        border-radius: 22px;
    }

    .meeting-box {
        text-align: left;
    }

    .meeting-img {
        width: 100%;
        max-height: 220px;
        object-fit: cover;
    }

    .customer-slot-card {
        padding: 14px;
    }

    .customer-slot-card button,
    .customer-slot-card .enter-btn-link,
    .calendar-form-card button,
    .profile-form-card button,
    .signup-box button {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .dash-main {
        padding-left: 10px;
        padding-right: 10px;
    }

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

    .calendar-grid {
        grid-template-columns: repeat(7, minmax(34px, 1fr));
        gap: 4px;
    }

    .calendar-cell {
        min-height: 68px;
        padding: 6px;
    }

    .calendar-meta,
    .customer-calendar-event {
        font-size: 9px;
    }
}

/*IPHONE FIT PATCH*/
*, *::before, *::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

@media (max-width: 430px) {
    body {
        width: 100%;
        min-width: 0;
    }

    .nav-container,
    .dash-container,
    .dash-main,
    .hero,
    .how-it-works,
    .about-section,
    .footer,
    .signup-page,
    .login-page {
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        overflow-x: hidden;
    }

    .nav-container {
        padding: 16px 18px;
        gap: 14px;
    }

    .nav-logo img {
        width: auto;
        max-width: 210px;
        height: auto;
    }

    .nav-links {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        white-space: nowrap;
    }

    .nav-links a {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .hero {
        min-height: auto;
        padding: 34px 18px;
    }

    .hero h1 {
        font-size: clamp(34px, 12vw, 48px);
        line-height: 1.03;
    }

    .signup-box,
    .login-box {
        width: min(100%, 360px);
        margin: 42px auto;
        padding: 22px 18px;
    }

    .dash-container {
        display: block;
        min-height: 100vh;
    }

    .sidebar {
        position: sticky;
        top: 0;
        z-index: 30;
        width: 100%;
        min-width: 0;
        height: auto;
        padding: 12px 12px 10px;
        overflow: hidden;
    }

    .sidebar-logo {
        margin-bottom: 8px;
    }

    .sidebar-logo img {
        width: 112px;
        height: auto;
    }

    .sidebar-links {
        display: flex;
        gap: 8px;
        width: 100%;
        overflow-x: auto;
        padding: 0 0 4px;
        scrollbar-width: none;
    }

    .sidebar-links::-webkit-scrollbar {
        display: none;
    }

    .sidebar-links a {
        flex: 0 0 auto;
        padding: 9px 12px;
        border-radius: 999px;
        font-size: 13px;
        line-height: 1;
        background: rgba(255, 255, 255, 0.08);
    }

    .dash-main {
        padding: 20px 14px 34px;
    }

    .dash-top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        align-items: center;
        margin-bottom: 18px;
    }

    .dash-top h1 {
        min-width: 0;
        font-size: 27px;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .top-profile-link {
        min-width: 44px;
    }

    .dash-cards,
    .stats-grid,
    .owner-stat-grid,
    .search-filter-grid,
    .profile-layout,
    .dash-row,
    .owner-admin-grid,
    .calendar-bottom,
    .team-member-grid,
    .settings-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 14px;
        width: 100%;
        min-width: 0;
    }

    .card,
    .tracker-card,
    .contractors-box,
    .search-box,
    .meeting-box,
    .profile-preview-card,
    .profile-form-card,
    .profile-gallery-card,
    .calendar-panel,
    .calendar-form-card,
    .calendar-day-card,
    .inbox-panel,
    .archive-card,
    .company-admin-card,
    .owner-panel,
    .settings-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        padding: 17px 15px;
        border-radius: 18px;
    }

    .card {
        min-height: 92px;
    }

    .tracker-value {
        font-size: 30px;
        line-height: 1;
    }

    .contractors-box h2,
    .contractors-box h3,
    .search-box h2,
    .search-box h3,
    .calendar-panel h2,
    .calendar-form-card h2,
    .calendar-day-card h3,
    .profile-form-card h2,
    .profile-preview-card h2 {
        font-size: 22px;
        line-height: 1.14;
        overflow-wrap: anywhere;
    }

    .company-profile-card,
    .independent-preview-card,
    .employee-card,
    .selected-employee-summary,
    .owner-selected-employee,
    .customer-slot-card,
    .inbox-message-card,
    .appointment-row,
    .day-slot {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 11px;
        width: 100%;
        min-width: 0;
        align-items: start;
    }

    .employee-header,
    .customer-slot-top,
    .search-results-header,
    .inbox-message-top,
    .calendar-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        align-items: start;
    }

    .employee-content,
    .company-card,
    .customer-slot-card,
    .inbox-message-content,
    .profile-preview-card,
    .profile-form-card {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .employee-avatar,
    .company-logo-preview,
    .profile-company-logo,
    .top-profile-avatar,
    .profile-icon {
        flex: 0 0 auto;
    }

    .search-action-row,
    .day-slot-actions,
    .calendar-nav-group {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        width: 100%;
    }

    .enter-btn-link,
    .search-action-row button,
    .search-action-row a,
    .day-slot-actions button,
    .calendar-nav,
    .customer-slot-card button,
    .calendar-form-card button,
    .profile-form-card button,
    .signup-box button,
    .login-box button {
        width: 100%;
        text-align: center;
    }

    .profile-form-card input,
    .profile-form-card select,
    .profile-form-card textarea,
    .calendar-form-card input,
    .calendar-form-card select,
    .calendar-form-card textarea,
    .search-box input,
    .search-box select,
    .signup-box input,
    .signup-box select,
    .login-box input,
    .login-box select {
        width: 100%;
        min-width: 0;
        font-size: 16px;
    }

    input[type="file"] {
        font-size: 12px;
        padding: 10px;
    }

    .profile-avatar {
        width: 132px;
        height: 132px;
        margin-inline: auto;
    }

    .company-photo-strip,
    .profile-gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-photo-thumb,
    .profile-gallery-item img {
        height: 160px;
    }

    .calendar-header h2 {
        font-size: 25px;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 4px;
        width: 100%;
        min-width: 0;
        overflow: visible;
    }

    .calendar-day-label {
        font-size: 9px;
        text-align: center;
        overflow: hidden;
    }

    .calendar-cell {
        min-width: 0;
        min-height: 58px;
        padding: 5px 3px;
        border-radius: 10px;
        gap: 3px;
    }

    .calendar-date-number {
        font-size: 13px;
    }

    .calendar-meta,
    .customer-calendar-event {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 8px;
        line-height: 1.15;
        padding: 2px 3px;
        border-radius: 6px;
    }

    .calendar-cell.empty {
        min-height: 58px;
        visibility: hidden;
    }

    .appointment-row {
        border-radius: 14px;
        padding: 14px 0;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .footer {
        padding: 34px 18px 24px;
    }

    .footer-grid,
    .footer-bottom {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        text-align: left;
    }
}

@media (max-width: 360px) {
    .dash-main {
        padding-left: 10px;
        padding-right: 10px;
    }

    .calendar-cell {
        min-height: 52px;
        padding: 4px 2px;
    }

    .calendar-date-number {
        font-size: 12px;
    }

    .calendar-meta,
    .customer-calendar-event {
        font-size: 7px;
    }
}

/*IPHONE HOME PAGE*/
.mobile-steps {
    display: none;
}

@media (max-width: 640px) {
    .navbar {
        padding: 18px 14px 12px;
        overflow: hidden;
    }

    .nav-container {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .nav-logo {
        justify-content: center;
        width: 100%;
    }

    .nav-logo img {
        width: min(82vw, 310px);
        height: auto;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        padding: 0;
        overflow: visible;
        white-space: normal;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 8px 6px;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 6px 18px rgba(8, 6, 25, 0.06);
        font-size: 12px;
        line-height: 1.1;
        text-align: center;
    }

    .nav-link-up {
        color: #ffffff !important;
        box-shadow: 0 8px 20px rgba(0, 74, 173, 0.18);
    }

    .hero {
        width: 100%;
        padding: 0 14px;
        background: #eef5ff;
    }

    .hero img {
        width: 100%;
        height: 190px;
        min-height: 0;
        object-fit: cover;
        object-position: center;
        border-radius: 20px;
        box-shadow: 0 14px 34px rgba(8, 6, 25, 0.12);
    }

    .info-sec {
        padding: 44px 18px 34px;
    }

    .info-sec p {
        max-width: 100%;
        font-size: 21px;
        line-height: 1.55;
    }

    .horizontal-line {
        width: 58%;
        margin: 28px auto;
    }

    .info-sec > img {
        display: none;
    }

    .mobile-steps {
        display: grid;
        gap: 14px;
        margin-top: 28px;
    }

    .mobile-step-card {
        background: #ffffff;
        border: 1px solid #dbeafe;
        border-radius: 22px;
        padding: 20px 18px;
        text-align: left;
        box-shadow: 0 12px 28px rgba(8, 6, 25, 0.08);
    }

    .mobile-step-card span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
        border-radius: 50%;
        background: linear-gradient(90deg, #5de0e6, #004aad);
        color: #ffffff;
        font-weight: 800;
    }

    .mobile-step-card h3 {
        margin: 0 0 8px;
        color: #080619;
        font-size: 20px;
        line-height: 1.15;
    }

    .mobile-step-card p {
        margin: 0;
        color: #475569;
        font-size: 16px;
        line-height: 1.45;
    }

    .all-trades-slider {
        padding: 44px 16px;
        overflow: hidden;
    }

    #slider-title {
        margin: 0 0 20px;
        font-size: 34px;
        line-height: 1.1;
        text-align: left;
    }

    .slider-container {
        overflow: visible;
    }

    .slider-container::before,
    .slider-container::after {
        display: none;
    }

    .slides {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 16px;
        padding: 0;
        animation: none;
        transform: none;
    }

    .slides .slide:nth-child(n + 6) {
        display: none;
    }

    .slide {
        min-width: 0;
        width: 100%;
        padding: 14px;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 12px 28px rgba(8, 6, 25, 0.08);
    }

    .slide img {
        width: 100%;
        height: 180px;
        border-radius: 16px;
    }

    .slide p {
        margin: 12px 0 2px;
        font-size: 16px;
    }

    .hook {
        padding: 48px 18px;
    }

    .hook-container {
        gap: 24px;
    }

    .hook-logo {
        width: min(82vw, 300px);
    }
}

@media (max-width: 390px) {
    .nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero img {
        height: 165px;
    }

    .info-sec p {
        font-size: 19px;
    }

    #slider-title {
        font-size: 30px;
    }
}

/*IPHONE SITEWIDE POLISH*/
@media (max-width: 640px) {
    :root {
        --mobile-page-pad: 14px;
        --mobile-card-pad: 16px;
        --mobile-radius: 20px;
    }

    html {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
        min-width: 0;
        overflow-x: hidden;
        font-size: 15px;
        line-height: 1.45;
        background: #eef5ff;
    }

    main,
    section,
    header,
    footer,
    nav,
    form,
    article,
    aside,
    div {
        max-width: 100%;
    }

    h1 {
        font-size: clamp(28px, 9vw, 38px);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    h2 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    h3 {
        font-size: 20px;
        line-height: 1.18;
    }

    p,
    li,
    a,
    span,
    small,
    strong {
        overflow-wrap: anywhere;
    }

    .about-section,
    .legal-section,
    .founders-hero,
    .signup-wrapper,
    .about-mission {
        padding-left: var(--mobile-page-pad);
        padding-right: var(--mobile-page-pad);
    }

    .about-section {
        padding-top: 34px;
        padding-bottom: 50px;
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
    }

    .about-text {
        max-width: 100%;
        text-align: left;
    }

    .about-text h1,
    .founders-title,
    .legal-title,
    .our-miss {
        font-size: clamp(34px, 11vw, 46px);
        margin-bottom: 22px;
        text-align: left;
    }

    .about-text p,
    .legal-block p,
    .legal-block li,
    .miss,
    .description {
        font-size: 16px;
        line-height: 1.62;
    }

    .about-image img {
        width: 100%;
        max-width: 100%;
        border-radius: var(--mobile-radius);
    }

    .about-mission {
        padding-top: 36px;
        padding-bottom: 60px;
    }

    .miss {
        padding: 0;
    }

    .legal-section {
        padding-top: 38px;
        padding-bottom: 50px;
    }

    .legal-container {
        width: 100%;
    }

    .legal-block {
        margin-bottom: 18px;
        padding: var(--mobile-card-pad);
        border-radius: var(--mobile-radius);
        background: #ffffff;
        box-shadow: 0 10px 28px rgba(8, 6, 25, 0.07);
    }

    .legal-block h2 {
        font-size: 21px;
    }

    .legal-block ul {
        padding-left: 18px;
    }

    .founders-hero {
        padding-top: 34px;
        padding-bottom: 54px;
    }

    .founders-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        justify-items: stretch;
    }

    .founder-card {
        width: 100%;
        padding: var(--mobile-card-pad);
        border-radius: var(--mobile-radius);
        background: #ffffff;
        box-shadow: 0 12px 30px rgba(8, 6, 25, 0.08);
    }

    .founder-card img {
        width: 100%;
        height: auto;
        max-height: 320px;
        border-radius: 18px;
    }

    .description {
        max-width: 100%;
        margin-top: 18px;
    }

    .signup-wrapper {
        min-height: auto;
        padding-top: 38px;
        padding-bottom: 48px;
        align-items: flex-start;
    }

    .signup-box {
        width: 100%;
        max-width: 100%;
        padding: var(--mobile-card-pad);
        border-radius: var(--mobile-radius);
    }

    .signup-box h2 {
        margin-top: 0;
        font-size: 25px;
    }

    .signup-box input,
    .signup-box select,
    .signup-box textarea,
    .signup-box button {
        width: 100%;
        min-width: 0;
        font-size: 16px;
        min-height: 44px;
    }

    .signup-role-panel,
    .signup-subsection {
        width: 100%;
    }

    .dash-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        min-height: 100vh;
        height: auto;
        overflow-x: hidden;
    }

    .dash-main {
        width: 100%;
        min-width: 0;
        padding: 18px var(--mobile-page-pad) 42px !important;
        overflow-x: hidden;
    }

    .dash-top {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .dash-top h1 {
        min-width: 0;
        margin: 0;
        font-size: clamp(25px, 7.4vw, 32px);
        line-height: 1.14;
    }

    .dash-top h1 strong {
        display: inline;
    }

    .top-profile-link {
        width: auto;
        min-width: 44px;
        gap: 8px;
    }

    .top-profile-link span {
        display: none !important;
    }

    .top-profile-avatar,
    .profile-icon {
        width: 44px;
        height: 44px;
    }

    .dash-cards,
    .inbox-summary-cards,
    .dash-row,
    .schedule-layout,
    .owner-admin-grid,
    .calendar-bottom,
    .profile-layout,
    .search-filter-grid,
    .time-picker-row,
    .footer-grid,
    .company-list,
    .employee-list,
    .profile-gallery-grid,
    .company-photo-strip {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 14px !important;
        width: 100%;
        min-width: 0;
    }

    .card,
    .tracker-card,
    .contractors-box,
    .search-box,
    .meeting-box,
    .appointments-box,
    .calendar-panel,
    .calendar-form-card,
    .calendar-day-card,
    .profile-preview-card,
    .profile-form-card,
    .profile-gallery-card,
    .inbox-page-card,
    .company-card,
    .employee-card,
    .company-profile-card,
    .independent-preview-card,
    .selected-employee-summary,
    .owner-selected-employee,
    .customer-slot-card,
    .inbox-message-card,
    .search-suggestion-box {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: var(--mobile-card-pad) !important;
        border-radius: var(--mobile-radius) !important;
        overflow: hidden;
    }

    .card,
    .tracker-card {
        min-height: 96px;
    }

    .tracker-label {
        font-size: 13px;
    }

    .tracker-value {
        font-size: 32px;
    }

    .employee-card,
    .company-profile-card,
    .independent-preview-card,
    .selected-employee-summary,
    .owner-selected-employee,
    .customer-slot-card,
    .inbox-message-card,
    .appointment-row,
    .day-slot {
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    .employee-header,
    .customer-slot-top,
    .inbox-message-top,
    .search-results-header,
    .inbox-header-row,
    .footer-middle,
    .footer-bottom {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px;
        align-items: start;
        text-align: left;
    }

    .employee-content,
    .inbox-message-content,
    .company-description-preview,
    .profile-preview-text,
    .employee-bio,
    .employee-availability,
    .employee-trade,
    .search-note {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .employee-avatar,
    .employee-avatar.small,
    .company-logo-preview,
    .profile-company-logo {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .profile-avatar {
        width: min(180px, 62vw);
        height: min(180px, 62vw);
        margin: 0 auto 16px;
    }

    .profile-form-card input,
    .profile-form-card select,
    .profile-form-card textarea,
    .calendar-form-card input,
    .calendar-form-card select,
    .calendar-form-card textarea,
    .search-box input,
    .search-box select,
    .owner-employee-form input,
    .owner-employee-form select,
    .owner-employee-form textarea {
        width: 100%;
        min-width: 0;
        font-size: 16px;
        min-height: 44px;
    }

    .profile-form-card textarea,
    .calendar-form-card textarea,
    .owner-employee-form textarea {
        min-height: 120px;
    }

    .enter-btn-link,
    .calendar-form-card button,
    .profile-form-card button,
    .customer-slot-card button,
    .delete-slot-btn,
    .search-action-row button,
    .search-reset-link,
    .owner-employee-form button {
        display: inline-flex;
        width: 100%;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .search-action-row,
    .day-slot-actions,
    .appointment-actions,
    .inbox-filter-links {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px;
        width: 100%;
    }

    .calendar-header {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
    }

    .calendar-header h2 {
        font-size: clamp(24px, 8vw, 32px);
    }

    .calendar-nav-group {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .calendar-nav {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
        gap: 4px !important;
        width: 100%;
        overflow: visible;
    }

    .calendar-day-label {
        font-size: 9px;
        padding: 0;
        text-align: center;
    }

    .calendar-cell {
        min-width: 0;
        min-height: 58px;
        padding: 5px 3px;
        border-radius: 10px;
    }

    .calendar-date-number {
        font-size: 13px;
    }

    .calendar-meta,
    .customer-calendar-event {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 8px;
        line-height: 1.15;
        padding: 2px 3px;
    }

    .appointment-row {
        padding: 14px 0 !important;
    }

    .meeting-img,
    .company-photo-thumb,
    .profile-gallery-item img {
        width: 100%;
        height: auto;
        max-height: 240px;
        object-fit: cover;
        border-radius: 16px;
    }

    .meeting-box iframe,
    .meeting-box video,
    #daily-frame,
    .daily-frame {
        width: 100% !important;
        min-height: 66vh;
        border-radius: var(--mobile-radius);
    }

    table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .success,
    .error {
        padding: 12px 14px;
        border-radius: 14px;
        line-height: 1.45;
    }

    .footer {
        padding: 36px var(--mobile-page-pad) 28px !important;
    }

    .footer-container {
        width: 100%;
    }

    .footer-socials,
    .footer-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 390px) {
    .dash-main {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .card,
    .tracker-card,
    .contractors-box,
    .search-box,
    .meeting-box,
    .appointments-box,
    .calendar-panel,
    .calendar-form-card,
    .calendar-day-card,
    .profile-preview-card,
    .profile-form-card,
    .profile-gallery-card,
    .inbox-page-card,
    .company-card,
    .employee-card,
    .company-profile-card,
    .independent-preview-card,
    .selected-employee-summary,
    .owner-selected-employee,
    .customer-slot-card,
    .inbox-message-card {
        padding: 14px !important;
    }

    .calendar-grid {
        gap: 3px !important;
    }

    .calendar-cell {
        min-height: 52px;
        padding: 4px 2px;
    }

    .calendar-meta,
    .customer-calendar-event {
        font-size: 7px;
    }
}
