/* =========================================================
   FONT IMPORT
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
    /* =====================================================
       BRAND COLORS
    ===================================================== */
    --primary: #0f5c4a;
    --primary-hover: #0a4739;
    --primary-dark: #063b30;
    --primary-light: #e8f3ef;
    --primary-soft: #d6ebe4;
    --primary-extra-light: #f4faf7;
    /* =====================================================
       SECONDARY / ACCENT
    ===================================================== */
    --accent: #c6a15b;
    --accent-light: #f8f1e4;
    --secondary: #18332c;
    /* =====================================================
       TEXT COLORS
    ===================================================== */
    --text-dark: #15241f;
    --text-color: #61706b;
    --text-muted: #93a09c;
    --text-white: #ffffff;
    /* =====================================================
       BACKGROUND COLORS
    ===================================================== */
    --body-bg: #f5f8f6;
    --white: #ffffff;
    --light-bg: #edf4f1;
    --dark-bg: #0b211b;
    /* =====================================================
       BORDER COLORS
    ===================================================== */
    --border-color: #dce7e2;
    --border-light: #edf2ef;
    /* =====================================================
       STATUS COLORS
    ===================================================== */
    --success: #198754;
    --success-light: #eaf7f0;
    --warning: #d79a2b;
    --warning-light: #fff7e7;
    --danger: #dc3545;
    --danger-light: #fff0f1;
    --info: #317a70;
    --info-light: #e9f5f2;
    /* =====================================================
       FONT
    ===================================================== */
    --font-family: "Inter", sans-serif;
    /* =====================================================
       FONT SIZE
    ===================================================== */
    --fs-xs: 0.6875rem;
    --fs-sm: 0.8125rem;
    --fs-md: 0.9375rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.5rem;
    --fs-xxl: 2rem;
    /* =====================================================
       FONT WEIGHT
    ===================================================== */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    /* =====================================================
       SPACING
    ===================================================== */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 1.75rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    /* =====================================================
       BORDER RADIUS
    ===================================================== */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-pill: 50rem;
    /* =====================================================
       SHADOWS
    ===================================================== */
    --shadow-xs:
        0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm:
        0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md:
        0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-lg:
        0 20px 45px rgba(15, 23, 42, 0.12);
    /* =====================================================
       TRANSITION
    ===================================================== */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    /* =====================================================
       LAYOUT
    ===================================================== */
    --header-height: 76px;
    --container-max: 1400px;
    /* =====================================================
       BOOTSTRAP OVERRIDE
    ===================================================== */
    --bs-primary: var(--primary);
    --bs-primary-rgb: 37, 99, 235;
    --bs-secondary: var(--secondary);
    --bs-success: var(--success);
    --bs-danger: var(--danger);
    --bs-warning: var(--warning);
    --bs-info: var(--info);
    --bs-body-font-family: var(--font-family);
    --bs-body-color: var(--text-color);
    --bs-body-bg: var(--body-bg);
    --bs-border-color: var(--border-color);
    --bs-border-radius: var(--radius-sm);
    --bs-border-radius-sm: var(--radius-sm);
    --bs-border-radius-lg: var(--radius-lg);
}

/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--body-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* =========================================================
   REUSABLE APP CONTAINER
========================================================= */
.app-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* =========================================================
   REUSABLE SECTION
========================================================= */
.section {
    padding: var(--space-10) 0;
}

.section-sm {
    padding: var(--space-6) 0;
}

.section-lg {
    padding: var(--space-12) 0;
}

/* =========================================================
   REUSABLE CARD
========================================================= */
.app-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.app-card-hover {
    transition: var(--transition);
}

.app-card-hover:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* =========================================================
   REUSABLE BUTTON
========================================================= */
.btn-app {
    min-height: 44px;
    padding: 0.625rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    line-height: 1;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.btn-app:hover {
    transform: translateY(-1px);
}

/* PRIMARY BUTTON */
.btn-app-primary {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.btn-app-primary:hover {
    color: var(--white);
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* LIGHT BUTTON */
.btn-app-light {
    color: var(--text-dark);
    background: var(--white);
    border-color: var(--border-color);
}

.btn-app-light:hover {
    background: var(--light-bg);
}

/* =========================================================
   MAIN HEADER
========================================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    min-height: var(--header-height);
    background:
        rgba(255, 255, 255, 0.95);
    border-bottom:
        1px solid var(--border-light);
    backdrop-filter:
        blur(18px);
    -webkit-backdrop-filter:
        blur(18px);
}

.header-inner {
    min-height: var(--header-height);
}

/* =========================================================
   BRAND
========================================================= */
.brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    color: var(--white);
    background:
        linear-gradient(135deg,
            var(--primary),
            #60a5fa);
    font-size: 1.125rem;
    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.22);
}

.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: var(--fw-extrabold);
    letter-spacing: -0.4px;
}

.brand-name span {
    color: var(--primary);
}

.brand-tagline {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */
.main-navigation {
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
}

.nav-link {
    position: relative;
    padding:
        0.625rem 0.875rem;
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link.active {
    color: var(--primary);
    font-weight: var(--fw-semibold);
}

/* =========================================================
   HEADER ACTIONS
========================================================= */
.header-actions {
    align-items: center;
    gap: var(--space-2);
}

/* LOGIN */
.login-btn {
    color: var(--primary);
    background: var(--primary-light);
}

.login-btn:hover {
    color: var(--white);
    background: var(--primary);
}

/* PROFILE */
.profile-btn {
    color: var(--text-dark);
    background: var(--white);
    border-color: var(--border-color);
}

.profile-btn:hover {
    background: var(--light-bg);
}

.profile-avatar {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    background: var(--light-bg);
    font-size: 0.6875rem;
}

/* LOGOUT */
.logout-btn {
    color: var(--danger);
    background: var(--danger-light);
}

.logout-btn:hover {
    color: var(--white);
    background: var(--danger);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */
.mobile-menu-btn {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    background: var(--white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* =========================================================
   MOBILE OFFCANVAS
========================================================= */
.mobile-menu {
    --bs-offcanvas-width: 320px;
}

.mobile-menu .offcanvas-header {
    padding: var(--space-5);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu .offcanvas-body {
    min-height: calc(100vh - 86px);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */
.mobile-navigation {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding:
        var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    color: var(--text-color);
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    transition: var(--transition-fast);
}

.mobile-nav-icon {
    width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.mobile-nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: var(--fw-semibold);
}

.mobile-nav-link.active .mobile-nav-icon {
    color: var(--primary);
}

/* =========================================================
   MOBILE ACTIONS
========================================================= */
.mobile-actions {
    margin-top: auto;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
    .main-navigation {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    :root {
        --header-height: 68px;
        --fs-lg: 1.0625rem;
        --fs-xl: 1.375rem;
        --fs-xxl: 1.75rem;
    }

    .header-inner {
        min-height: var(--header-height);
    }

    .brand-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1.0625rem;
    }

    .mobile-menu-btn {
        margin-left: auto;
    }
}

@media (max-width: 399.98px) {
    .brand-tagline {
        display: none;
    }

    .brand {
        gap: var(--space-2);
    }
}

/* =========================================================
   HERO IMAGE
========================================================= */
.hero-image-section {
    padding:
        var(--space-6) 0;
}

.hero-picture {
    width: 100%;
    display: block;
}

.hero-image {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767.98px) {
    .hero-image-section {
        padding:
            var(--space-3) 0;
    }

    .hero-image {
        border-radius: var(--radius-lg);
    }
}

/* =========================================================
   MOBILE BOTTOM ACTION BAR
========================================================= */
.mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding:
        var(--space-2) var(--space-4);
    padding-bottom:
        calc(var(--space-2) + env(safe-area-inset-bottom));
    background:
        rgba(255, 255, 255, 0.96);
    border-top:
        1px solid var(--border-light);
    backdrop-filter:
        blur(18px);
    -webkit-backdrop-filter:
        blur(18px);
    box-shadow:
        0 -8px 30px rgba(15, 35, 29, 0.06);
}

/* =========================================================
   MOBILE BOTTOM ACTION
========================================================= */
.mobile-bottom-action {
    flex: 1;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-color);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    transition: var(--transition-fast);
}

.mobile-bottom-icon {
    width: 32px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--primary);
}

.mobile-bottom-action:hover {
    color: var(--primary);
}

.mobile-call-action {
    color: var(--primary);
}

.mobile-call-action .mobile-bottom-icon {
    color: var(--primary);
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */
.floating-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 1035;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: #25d366;
    font-size: 1.75rem;
    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.28);
    transition: var(--transition);
}

.floating-whatsapp:hover {
    color: var(--white);
    transform:
        translateY(-3px) scale(1.04);
}

/* =========================================================
   SCROLL TO TOP
========================================================= */
.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1035;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: var(--fs-sm);
    cursor: pointer;
    box-shadow:
        0 10px 25px rgba(15, 92, 74, 0.25);
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(15px);
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform:
        translateY(-3px);
}

/* =========================================================
   MOBILE ADJUSTMENTS
========================================================= */
@media (max-width: 767.98px) {

    /* Space for mobile bottom navigation */
    body {
        padding-bottom: 85px;
    }

    /* Floating buttons move above bottom bar */
    .floating-whatsapp {
        left: 16px;
        bottom: 88px;
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }

    .scroll-top-btn {
        right: 16px;
        bottom: 88px;
        width: 46px;
        height: 46px;
    }
}

/* =========================================================
   DESKTOP / TABLET
========================================================= */
@media (min-width: 768px) {
    .floating-whatsapp {
        left: 24px;
        bottom: 24px;
    }

    .scroll-top-btn {
        right: 24px;
        bottom: 24px;
    }
}

/* =========================================================
   SERVICES SECTION
========================================================= */
.services-section {
    padding:
        var(--space-10) 0;
}

/* =========================================================
   SECTION HEADER
========================================================= */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--space-2);
    color: var(--primary);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
}

.section-label i {
    font-size: 0.75rem;
}

.section-title {
    margin: 0;
    color: var(--text-dark);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    letter-spacing: -0.7px;
}

.section-description {
    margin-top: 6px;
    max-width: 520px;
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.section-view-all {
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    transition: var(--transition-fast);
}

.section-view-all i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.section-view-all:hover {
    color: var(--primary-dark);
}

.section-view-all:hover i {
    transform: translateX(3px);
}

/* =========================================================
   SERVICE CARD
========================================================= */
.service-card {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--space-5);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.service-card:hover {
    color: inherit;
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* =========================================================
   SERVICE ICON
========================================================= */
.service-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
}

/* GREEN */
.service-icon-green {
    color: var(--primary);
    background: var(--primary-light);
}

/* GOLD */
.service-icon-gold {
    color: #a77b32;
    background: var(--accent-light);
}

/* SAGE */
.service-icon-sage {
    color: #317a70;
    background: var(--info-light);
}

/* DARK */
.service-icon-dark {
    color: var(--white);
    background: var(--primary-dark);
}

/* =========================================================
   SERVICE CONTENT
========================================================= */
.service-content {
    padding-right: 25px;
}

.service-title {
    margin: 0 0 6px;
    color: var(--text-dark);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    letter-spacing: -0.2px;
}

.service-text {
    margin: 0;
    color: var(--text-muted);
    font-size: var(--fs-xs);
    line-height: 1.6;
}

/* =========================================================
   SERVICE ARROW
========================================================= */
.service-arrow {
    position: absolute;
    right: var(--space-4);
    bottom: var(--space-4);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    background: var(--light-bg);
    font-size: 0.6875rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-arrow {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-35deg);
}

/* =========================================================
   MOBILE APP STYLE
========================================================= */
@media (max-width: 767.98px) {
    .services-section {
        padding:
            var(--space-8) 0;
    }

    .section-header {
        margin-bottom: var(--space-4) !important;
    }

    .section-title {
        font-size: 1.375rem;
    }

    .section-description {
        font-size: var(--fs-xs);
        max-width: 290px;
    }

    .service-card {
        min-height: 190px;
        padding: var(--space-4);
        border-radius: var(--radius-lg);
    }

    .service-icon {
        width: 46px;
        height: 46px;
        margin-bottom: var(--space-3);
        border-radius: var(--radius-md);
        font-size: 1.1rem;
    }

    .service-title {
        margin-bottom: 5px;
        font-size: var(--fs-sm);
    }

    .service-text {
        font-size: 0.6875rem;
        line-height: 1.5;
    }

    .service-arrow {
        right: var(--space-3);
        bottom: var(--space-3);
        width: 28px;
        height: 28px;
    }
}

/* LOgin */
/* =========================================================
   ADMIN LOGIN - PREMIUM FULL SCREEN
========================================================= */

.admin-login-body {

    margin: 0;

    min-height: 100vh;

    min-height: 100dvh;

    overflow: hidden;

    background: #edf4f1;

}

/* =========================================================
   LOGIN PAGE
========================================================= */

.admin-login-page {

    position: relative;

    min-height: 100vh;

    min-height: 100dvh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 30px 0;

    background:
        linear-gradient(135deg,
            #edf5f1 0%,
            #f8fbf9 45%,
            #e3efea 100%);

}

/* =========================================================
   BACKGROUND DECORATIVE SHAPES
========================================================= */

.login-bg-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}

/* TOP LEFT */

.login-bg-shape-1 {

    width: 520px;

    height: 520px;

    top: -260px;

    left: -180px;

    background:
        radial-gradient(circle,
            rgba(15, 92, 74, 0.22),
            rgba(15, 92, 74, 0));

}

/* BOTTOM RIGHT */

.login-bg-shape-2 {

    width: 650px;

    height: 650px;

    right: -250px;

    bottom: -330px;

    background:
        radial-gradient(circle,
            rgba(198, 161, 91, 0.14),
            rgba(198, 161, 91, 0));

}

/* =========================================================
   SUBTLE BACKGROUND GRID
========================================================= */

.login-bg-grid {

    position: absolute;

    inset: 0;

    opacity: 0.35;

    pointer-events: none;

    background-image:

        linear-gradient(rgba(15, 92, 74, 0.035) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(15, 92, 74, 0.035) 1px,
            transparent 1px);

    background-size: 42px 42px;

}

/* =========================================================
   CONTAINER
========================================================= */

.admin-login-page .container {

    position: relative;

    z-index: 2;

}

/* =========================================================
   LOGIN CARD
========================================================= */

.admin-login-card {

    position: relative;

    width: 100%;

    padding: 46px 44px 42px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.88);

    border:
        1px solid rgba(255, 255, 255, 0.8);

    border-radius: 28px;

    box-shadow:

        0 30px 80px rgba(6, 59, 48, 0.12),

        0 2px 10px rgba(6, 59, 48, 0.04);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

}

/* =========================================================
   CARD TOP ACCENT
========================================================= */

.admin-login-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background:
        linear-gradient(90deg,
            var(--primary-dark),
            var(--primary),
            #4c9b87);

}

/* =========================================================
   BRAND
========================================================= */

.admin-login-brand {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 42px;

}

.admin-brand-logo {

    position: relative;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 16px;

    color: var(--white);

    background:

        linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));

    box-shadow:
        0 10px 24px rgba(15, 92, 74, 0.25);

    font-size: 19px;

}

/* SMALL GLOW */

.admin-brand-logo::after {

    content: "";

    position: absolute;

    inset: -6px;

    z-index: -1;

    border-radius: inherit;

    background:
        rgba(15, 92, 74, 0.1);

}

/* =========================================================
   BRAND TEXT
========================================================= */

.admin-brand-name {

    color: var(--text-dark);

    font-size: 20px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -0.6px;

}

.admin-brand-name span {

    color: var(--primary);

}

.admin-brand-role {

    margin-top: 5px;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.6px;

}

/* =========================================================
   HEADING
========================================================= */

.admin-login-heading {

    margin-bottom: 32px;

}

.admin-login-heading h1 {

    margin: 0 0 8px;

    color: var(--text-dark);

    font-size: 28px;

    font-weight: 750;

    line-height: 1.2;

    letter-spacing: -0.9px;

}

.admin-login-heading p {

    margin: 0;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.65;

}

/* =========================================================
   FORM FIELD
========================================================= */

.form-field {

    margin-bottom: 20px;

}

.form-field label {

    display: block;

    margin-bottom: 8px;

    color: var(--text-dark);

    font-size: 12px;

    font-weight: 650;

}

/* =========================================================
   PREMIUM INPUT
========================================================= */

.admin-input-wrap {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    height: 56px;

    overflow: hidden;

    background:
        rgba(247, 250, 248, 0.9);

    border:
        1px solid var(--border-color);

    border-radius: 14px;

    transition:

        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

}

.admin-input-wrap:hover {

    border-color:
        #bfd6ce;

}

.admin-input-wrap:focus-within {

    background:
        var(--white);

    border-color:
        var(--primary);

    box-shadow:

        0 0 0 4px rgba(15, 92, 74, 0.09);

}

/* =========================================================
   INPUT ICON
========================================================= */

.admin-input-icon {

    width: 54px;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: #7d918a;

    font-size: 14px;

    transition: color 0.2s ease;

}

.admin-input-wrap:focus-within .admin-input-icon {

    color: var(--primary);

}

/* =========================================================
   FORM INPUT
========================================================= */

.admin-input-wrap .form-control {

    height: 100%;

    min-width: 0;

    padding: 0 12px 0 0;

    border: 0;

    outline: 0;

    box-shadow: none !important;

    color: var(--text-dark);

    background: transparent;

    font-size: 14px;

}

.admin-input-wrap .form-control::placeholder {

    color: #a2aea9;

    opacity: 1;

}

/* =========================================================
   PASSWORD TOGGLE
========================================================= */

.password-toggle {

    width: 52px;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    padding: 0;

    border: 0;

    color: #7d918a;

    background: transparent;

    font-size: 15px;

    cursor: pointer;

    transition: 0.2s ease;

}

.password-toggle:hover {

    color: var(--primary);

}

/* =========================================================
   LOGIN BUTTON
========================================================= */

.admin-login-submit {

    position: relative;

    min-height: 56px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 6px;

    overflow: hidden;

    border: 0;

    border-radius: 14px;

    color: var(--white);

    background:

        linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));

    box-shadow:

        0 12px 25px rgba(15, 92, 74, 0.22);

    font-size: 14px;

    font-weight: 650;

    transition:

        transform 0.2s ease,
        box-shadow 0.2s ease;

}

/* BUTTON LIGHT EFFECT */

.admin-login-submit::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 70%;

    height: 100%;

    background:

        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.14),
            transparent);

    transform:
        skewX(-20deg);

    transition:
        left 0.5s ease;

}

.admin-login-submit:hover {

    color: var(--white);

    transform:
        translateY(-2px);

    box-shadow:

        0 16px 32px rgba(15, 92, 74, 0.28);

}

.admin-login-submit:hover::before {

    left: 130%;

}

.admin-login-submit i {

    font-size: 12px;

}

/* =========================================================
   MOBILE - SINGLE SCREEN APP EXPERIENCE
========================================================= */

@media (max-width: 575.98px) {

    html,
    body {

        width: 100%;

        height: 100%;

        overflow: hidden;

    }

    .admin-login-body {

        min-height: 100dvh;

    }

    .admin-login-page {

        width: 100%;

        height: 100dvh;

        min-height: 100dvh;

        padding: 0;

        align-items: center;

    }

    .admin-login-page .container {

        width: 100%;

        padding-right: 18px;

        padding-left: 18px;

    }

    .admin-login-card {

        padding: 32px 24px 28px;

        border-radius: 24px;

    }

    /* HIDE SOME DESKTOP DECORATION */

    .login-bg-grid {

        opacity: 0.2;

    }

    .login-bg-shape-1 {

        width: 360px;

        height: 360px;

        top: -190px;

        left: -180px;

    }

    .login-bg-shape-2 {

        width: 380px;

        height: 380px;

        right: -200px;

        bottom: -200px;

    }

    .admin-login-brand {

        margin-bottom: 30px;

    }

    .admin-brand-logo {

        width: 46px;

        height: 46px;

        border-radius: 14px;

        font-size: 17px;

    }

    .admin-login-heading {

        margin-bottom: 24px;

    }

    .admin-login-heading h1 {

        font-size: 25px;

    }

    .admin-login-heading p {

        font-size: 12px;

    }

    .form-field {

        margin-bottom: 16px;

    }

    .form-field label {

        margin-bottom: 7px;

    }

    .admin-input-wrap {

        height: 54px;

    }

    .admin-login-submit {

        min-height: 54px;

        margin-top: 2px;

    }

}