
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --sidebar: #0f172a;
            --body-background: #f1f5f9;
            --heading: #0f172a;
            --paragraph: #64748b;
            --border: #e2e8f0;
            --white: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Inter", sans-serif;
            background: var(--body-background);
            color: #334155;
        }

        /* Sidebar */

        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 260px;
            height: 100vh;
            padding: 22px 16px;
            overflow-y: auto;
            background: var(--sidebar);
            z-index: 1000;
            transition: 0.3s;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 10px 28px;
            color: var(--white);
        }

        .brand-logo {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            font-size: 23px;
        }

        .brand h4 {
            margin: 0;
            font-size: 19px;
            font-weight: 700;
        }

        .brand small {
            color: #94a3b8;
            font-size: 11px;
        }

        .menu-title {
            padding: 13px 14px 8px;
            color: #64748b;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .sidebar-menu {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .sidebar-menu li {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 5px;
            padding: 12px 14px;
            border-radius: 9px;
            color: #cbd5e1;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.2s;
        }

        .sidebar-menu li i {
            width: 20px;
            text-align: center;
        }

        .sidebar-menu li:hover,
        .sidebar-menu li.active {
            color: var(--white);
            background: var(--primary);
        }

        .sidebar-doctor {
            margin-top: 25px;
            padding: 15px;
            border-radius: 13px;
            color: var(--white);
            background: rgba(255, 255, 255, 0.08);
        }

        .sidebar-doctor img {
            width: 45px;
            height: 45px;
            border: 3px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            object-fit: cover;
        }

        .sidebar-doctor strong {
            display: block;
            margin-top: 9px;
            font-size: 13px;
        }

        .sidebar-doctor small {
            color: #94a3b8;
            font-size: 11px;
        }

        /* Main area */

        .main-wrapper {
            min-height: 100vh;
            margin-left: 260px;
            transition: 0.3s;
        }

        /* Header */

        .top-header {
            position: sticky;
            top: 0;
            z-index: 900;
            min-height: 72px;
            padding: 14px 28px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--white);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-menu-button {
            display: none;
            padding: 0;
            border: 0;
            color: var(--heading);
            background: transparent;
            font-size: 21px;
        }

        .page-title h5 {
            margin: 0 0 3px;
            color: var(--heading);
            font-size: 18px;
            font-weight: 700;
        }

        .page-title p {
            margin: 0;
            color: var(--paragraph);
            font-size: 12px;
        }

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

        .notification {
            position: relative;
            font-size: 19px;
            color: #475569;
        }

        .notification-dot {
            position: absolute;
            top: 0;
            right: -1px;
            width: 8px;
            height: 8px;
            border: 2px solid var(--white);
            border-radius: 50%;
            background: #ef4444;
        }

        .admin-profile {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .admin-profile img {
            width: 41px;
            height: 41px;
            border-radius: 50%;
            object-fit: cover;
        }

        .admin-profile strong {
            display: block;
            color: var(--heading);
            font-size: 13px;
        }

        .admin-profile small {
            display: block;
            color: var(--paragraph);
            font-size: 11px;
        }

        /* Dashboard content */

        .dashboard-content {
            padding: 28px;
        }

        /* Welcome section */

        .welcome-section {
            position: relative;
            min-height: 210px;
            margin-bottom: 25px;
            padding: 34px;
            border-radius: 20px;
            overflow: hidden;
            color: var(--white);
            background:
                linear-gradient(
                    90deg,
                    rgba(15, 23, 42, 0.92),
                    rgba(37, 99, 235, 0.75)
                ),
                url("https://images.unsplash.com/photo-1552053831-71594a27632d?auto=format&fit=crop&w=1600&q=85");
            background-position: center;
            background-size: cover;
        }

        .welcome-content {
            position: relative;
            z-index: 2;
            max-width: 620px;
        }

        .welcome-section h1 {
            margin-bottom: 10px;
            font-size: 30px;
            font-weight: 700;
        }

        .welcome-section p {
            max-width: 560px;
            margin-bottom: 20px;
            color: #dbeafe;
            font-size: 14px;
            line-height: 1.7;
        }

        .static-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 17px;
            border-radius: 9px;
            color: var(--primary);
            background: var(--white);
            font-size: 13px;
            font-weight: 700;
            cursor: default;
        }

        /* Statistics */

        .stat-card {
            height: 100%;
            padding: 21px;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: var(--white);
            box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
        }

        .stat-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .stat-icon {
            width: 49px;
            height: 49px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .blue-icon {
            color: #2563eb;
            background: #dbeafe;
        }

        .green-icon {
            color: #16a34a;
            background: #dcfce7;
        }

        .purple-icon {
            color: #9333ea;
            background: #f3e8ff;
        }

        .orange-icon {
            color: #ea580c;
            background: #ffedd5;
        }

        .stat-label {
            padding: 5px 8px;
            border-radius: 20px;
            color: #15803d;
            background: #dcfce7;
            font-size: 10px;
            font-weight: 700;
        }

        .stat-card h3 {
            margin: 17px 0 3px;
            color: var(--heading);
            font-size: 26px;
            font-weight: 700;
        }

        .stat-card p {
            margin: 0;
            color: var(--paragraph);
            font-size: 13px;
        }

        /* Dashboard cards */

        .dashboard-card {
            height: calc(100% - 25px);
            margin-top: 25px;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: var(--white);
            box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
        }

        .card-heading {
            padding: 20px 22px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .card-heading h5 {
            margin: 0;
            color: var(--heading);
            font-size: 16px;
            font-weight: 700;
        }

        .card-heading p {
            margin: 4px 0 0;
            color: var(--paragraph);
            font-size: 11px;
        }

        .view-label {
            padding: 7px 11px;
            border: 1px solid #bfdbfe;
            border-radius: 7px;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
        }

        /* Table */

        .table {
            margin: 0;
        }

        .table thead th {
            padding: 13px 15px;
            border-bottom-width: 1px;
            color: var(--paragraph);
            background: #f8fafc;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .table tbody td {
            padding: 15px;
            color: #475569;
            font-size: 12px;
            vertical-align: middle;
        }

        .pet-information {
            min-width: 160px;
            display: flex;
            align-items: center;
            gap: 11px;
        }

        .pet-information img {
            width: 43px;
            height: 43px;
            border-radius: 12px;
            object-fit: cover;
        }

        .pet-information strong {
            display: block;
            color: var(--heading);
            font-size: 13px;
        }

        .pet-information small {
            color: var(--paragraph);
            font-size: 10px;
        }

        .status {
            display: inline-block;
            padding: 5px 9px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            white-space: nowrap;
        }

        .confirmed {
            color: #1d4ed8;
            background: #dbeafe;
        }

        .waiting {
            color: #b45309;
            background: #fef3c7;
        }

        .completed {
            color: #15803d;
            background: #dcfce7;
        }

        /* Quick actions */

        .card-content {
            padding: 20px;
        }

        .quick-action {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 12px;
            padding: 14px;
            border: 1px solid var(--border);
            border-radius: 11px;
            cursor: pointer;
            transition: 0.2s;
        }

        .quick-action:last-child {
            margin-bottom: 0;
        }

        .quick-action:hover {
            border-color: #93c5fd;
            background: #eff6ff;
            transform: translateX(3px);
        }

        .quick-action-icon {
            width: 39px;
            height: 39px;
            flex-shrink: 0;
            border-radius: 10px;
            color: var(--primary);
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quick-action strong {
            display: block;
            color: var(--heading);
            font-size: 12px;
        }

        .quick-action small {
            color: var(--paragraph);
            font-size: 10px;
        }

        /* Pet cards */

        .pet-card {
            height: 100%;
            padding: 13px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: var(--white);
        }

        .pet-card img {
            width: 100%;
            height: 155px;
            border-radius: 11px;
            object-fit: cover;
        }

        .pet-card-content {
            padding: 13px 3px 3px;
        }

        .pet-card h6 {
            margin-bottom: 5px;
            color: var(--heading);
            font-size: 14px;
            font-weight: 700;
        }

        .pet-card p {
            margin-bottom: 5px;
            color: var(--paragraph);
            font-size: 11px;
        }

        .pet-type {
            display: inline-block;
            padding: 5px 8px;
            border-radius: 20px;
            color: var(--primary);
            background: #dbeafe;
            font-size: 10px;
            font-weight: 600;
        }

        /* Clinic information */

        .clinic-information {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
        }

        .clinic-information:last-child {
            border-bottom: 0;
        }

        .clinic-information span {
            color: var(--paragraph);
            font-size: 12px;
        }

        .clinic-information strong {
            color: var(--heading);
            font-size: 12px;
        }

        .open-status {
            display: inline-block;
            padding: 6px 10px;
            border-radius: 20px;
            color: #15803d;
            background: #dcfce7;
            font-size: 10px;
            font-weight: 700;
        }
        /* ==================================================
   PUBLIC WEBSITE FOOTER
================================================== */

.public-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 0;
    margin-top: 0;
}

.public-footer .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.2fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer-about {
    padding-right: 20px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand:hover {
    color: #ffffff;
}

.footer-brand .brand-symbol {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 21px;
}

.footer-brand div:last-child {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
}

.footer-brand small {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 3px;
}

.footer-about p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 22px;
}

.public-footer h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 22px;
}

.public-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.public-footer ul li {
    margin-bottom: 12px;
}

.public-footer ul li a {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.public-footer ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid #334155;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-socials a:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li i {
    width: 17px;
    color: #60a5fa;
    margin-top: 4px;
}

.footer-bottom {
    min-height: 72px;
    border-top: 1px solid #293548;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}

.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-bottom a {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* ==================================================
   FOOTER RESPONSIVE
================================================== */

@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .public-footer {
        padding-top: 50px;
    }

    .public-footer .container {
        width: min(100% - 30px, 1180px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }

    .footer-bottom > div {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

        /* Overlay */

        .sidebar-overlay {
            position: fixed;
            inset: 0;
            z-index: 999;
            display: none;
            background: rgba(15, 23, 42, 0.6);
        }

        /* Responsive */

        @media (max-width: 991px) {
            .sidebar {
                left: -260px;
            }

            .sidebar.show {
                left: 0;
            }

            .sidebar-overlay.show {
                display: block;
            }

            .main-wrapper {
                margin-left: 0;
            }

            .mobile-menu-button {
                display: block;
            }
        }

        @media (max-width: 767px) {
            .top-header,
            .dashboard-content {
                padding-left: 16px;
                padding-right: 16px;
            }

            .admin-details {
                display: none;
            }

            .welcome-section {
                min-height: 250px;
                padding: 25px;
            }

            .welcome-section h1 {
                font-size: 24px;
            }

            .page-title p {
                display: none;
            }
        }
        
        
        
        
        
        
        
        /* =========================================================
   SUPREME K9 PUBLIC WEBSITE
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #334155;
}

body,
button,
input {
    font-family: "Inter", sans-serif;
}

img {
    max-width: 100%;
}

.public-header .container,
.public-section .container,
.public-hero .container,
.verification-section .container,
.public-cta .container,
.public-footer .container {
    width: min(1180px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
}

/* =========================================================
   PUBLIC HEADER
========================================================= */

.public-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 78px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(12px);
}

.public-header .container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.public-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    color: #0f172a;
    text-decoration: none;
}

.public-brand:hover {
    color: #0f172a;
}

.public-brand .brand-symbol {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    font-size: 21px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.public-brand > div:last-child {
    display: flex;
    flex-direction: column;
}

.public-brand strong {
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.public-brand small {
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
}

.public-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.public-navigation a {
    position: relative;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.public-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.2s ease;
}

.public-navigation a:hover {
    color: #2563eb;
}

.public-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.login-button,
.register-button {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.login-button {
    color: #2563eb;
    border: 1px solid #bfdbfe;
    background: #ffffff;
}

.login-button:hover {
    color: #1d4ed8;
    background: #eff6ff;
}

.register-button {
    color: #ffffff;
    border: 1px solid #2563eb;
    background: #2563eb;
    box-shadow: 0 7px 18px rgba(37, 99, 235, 0.2);
}

.register-button:hover {
    color: #ffffff;
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
}

.public-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    color: #0f172a;
    background: #ffffff;
    font-size: 19px;
}

/* =========================================================
   HERO SECTION
========================================================= */

.public-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.96) 0%,
            rgba(15, 23, 42, 0.87) 42%,
            rgba(15, 23, 42, 0.35) 100%
        ),
        url("https://images.unsplash.com/photo-1552053831-71594a27632d?auto=format&fit=crop&w=1800&q=88");
    background-position: center;
    background-size: cover;
}

.public-hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -160px;
    bottom: -170px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.28);
    filter: blur(4px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 95px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    margin-bottom: 22px;
    border: 1px solid rgba(147, 197, 253, 0.4);
    border-radius: 30px;
    color: #dbeafe;
    background: rgba(37, 99, 235, 0.2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.public-hero h1 {
    max-width: 680px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 67px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -2px;
}

.public-hero p {
    max-width: 650px;
    margin: 0 0 32px;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    min-height: 50px;
    padding: 0 21px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: #2563eb;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
}

.primary-button:hover {
    color: #ffffff;
    background: #1d4ed8;
    transform: translateY(-2px);
}

.secondary-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    color: #0f172a;
    background: #ffffff;
}

/* =========================================================
   COMMON SECTIONS
========================================================= */

.public-section {
    padding: 95px 0;
    background: #ffffff;
}

.services-section {
    background: #f8fafc;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 15px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-heading p {
    margin: 0 auto;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    padding: 34px 30px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    transition: 0.25s ease;
}

.about-card:hover {
    border-color: #bfdbfe;
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.1);
}

.about-card > i {
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    background: #dbeafe;
    font-size: 23px;
}

.about-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 750;
}

.about-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   SERVICES
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 235px;
    padding: 27px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #ffffff;
    transition: 0.25s ease;
}

.service-card:hover {
    border-color: #93c5fd;
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    background: #eff6ff;
    font-size: 21px;
}

.service-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.35;
}

.service-card p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   CERTIFICATE VERIFICATION
========================================================= */

.verification-section {
    padding: 85px 0;
    background: #ffffff;
}

.verification-box {
    padding: 52px;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 60px;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.35), transparent 35%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.verification-box span {
    color: #93c5fd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.verification-box h2 {
    margin: 10px 0 13px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
}

.verification-box p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.8;
}

.verification-form {
    padding: 9px;
    border-radius: 14px;
    display: flex;
    gap: 8px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.verification-form input {
    min-width: 0;
    flex: 1;
    height: 48px;
    padding: 0 14px;
    border: 0;
    outline: 0;
    color: #0f172a;
    background: transparent;
    font-size: 13px;
}

.verification-form button {
    min-width: 135px;
    height: 48px;
    padding: 0 17px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: #2563eb;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.verification-form button:hover {
    background: #1d4ed8;
}

/* =========================================================
   REGISTRATION PROCESS
========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    position: relative;
    min-height: 225px;
    padding: 30px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    overflow: hidden;
    background: #ffffff;
    transition: 0.25s ease;
}

.process-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eff6ff;
}

.process-card:hover {
    border-color: #93c5fd;
    transform: translateY(-5px);
}

.process-card strong {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    background: #dbeafe;
    font-size: 14px;
    font-weight: 800;
}

.process-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 19px;
    font-weight: 750;
}

.process-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   CALL TO ACTION
========================================================= */

.public-cta {
    padding: 70px 0;
    background: #2563eb;
}

.public-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.public-cta h2 {
    max-width: 720px;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
}

.public-cta p {
    margin: 0;
    color: #dbeafe;
    font-size: 15px;
}

.cta-button {
    min-width: 175px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.cta-button:hover {
    color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

/* =========================================================
   PUBLIC FOOTER FIX
========================================================= */

.public-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.25fr 1.15fr;
    gap: 40px;
    padding-bottom: 52px;
}

.footer-about {
    padding-right: 10px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #ffffff;
    text-decoration: none;
}

.footer-brand:hover {
    color: #ffffff;
}

.footer-brand .brand-symbol {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #2563eb;
    font-size: 21px;
}

.footer-brand > div:last-child {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
}

.footer-brand small {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 11px;
}

.footer-about p {
    margin: 0 0 22px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.8;
}

.public-footer h4 {
    margin: 0 0 21px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.public-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.public-footer li {
    margin-bottom: 11px;
}

.public-footer li a {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
}

.public-footer li a:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-socials a {
    width: 37px;
    height: 37px;
    border: 1px solid #334155;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
}

.footer-socials a:hover {
    color: #ffffff;
    background: #2563eb;
    border-color: #2563eb;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact i {
    width: 16px;
    margin-top: 4px;
    color: #60a5fa;
}

.footer-bottom {
    min-height: 74px;
    border-top: 1px solid #293548;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 12px;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: #94a3b8;
    font-size: 12px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* =========================================================
   RESPONSIVE PUBLIC WEBSITE
========================================================= */

@media (max-width: 1100px) {
    .public-navigation {
        gap: 16px;
    }

    .public-navigation a {
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .public-header .container {
        position: relative;
    }

    .public-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .public-navigation {
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        padding: 18px;
        border: 1px solid #e2e8f0;
        border-radius: 0 0 14px 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
    }

    .public-navigation.show {
        display: flex;
    }

    .public-navigation a {
        padding: 12px;
        font-size: 13px;
    }

    .public-navigation a::after {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .public-hero {
        min-height: 560px;
    }

    .about-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .verification-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .public-header .container,
    .public-section .container,
    .public-hero .container,
    .verification-section .container,
    .public-cta .container,
    .public-footer .container {
        width: min(100% - 30px, 1180px);
    }

    .public-header,
    .public-header .container {
        min-height: 70px;
    }

    .public-brand .brand-symbol {
        width: 41px;
        height: 41px;
        font-size: 18px;
    }

    .public-brand strong {
        font-size: 15px;
    }

    .public-brand small {
        font-size: 10px;
    }

    .header-actions {
        display: none;
    }

    .public-navigation {
        left: 15px;
        right: 15px;
    }

    .public-hero {
        min-height: 590px;
        background-position: 60% center;
    }

    .hero-content {
        padding: 75px 0;
    }

    .public-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .public-hero p {
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .public-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .about-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .verification-section {
        padding: 65px 0;
    }

    .verification-box {
        padding: 31px 22px;
        border-radius: 19px;
    }

    .verification-box h2 {
        font-size: 28px;
    }

    .verification-form {
        flex-direction: column;
    }

    .verification-form button {
        width: 100%;
    }

    .public-cta {
        padding: 55px 0;
    }

    .public-cta .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom > div {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

/* ========================================
   About Us Modal
======================================== */

body.modal-open {
    overflow: hidden;
}

.about-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.about-modal.active {
    visibility: visible;
    opacity: 1;
}

.about-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.about-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.28);
    transform: translateY(25px) scale(0.97);
    transition: transform 0.25s ease;
}

.about-modal.active .about-modal-dialog {
    transform: translateY(0) scale(1);
}

.about-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.about-modal-close:hover {
    background: #dc2626;
    color: #ffffff;
    transform: rotate(90deg);
}

.about-modal-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 12px 25px rgba(234, 88, 12, 0.25);
}

.about-modal-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #ea580c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.about-modal-heading h2 {
    margin: 0 45px 20px 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.2;
}

.about-modal-content > p {
    margin: 0 0 15px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.about-modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.about-modal-feature {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.about-modal-feature:hover {
    border-color: #fdba74;
    background: #fff7ed;
    transform: translateY(-3px);
}

.about-modal-feature > i {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffedd5;
    color: #ea580c;
    font-size: 19px;
}

.about-modal-feature h3 {
    margin: 0 0 6px;
    color: #1e293b;
    font-size: 16px;
}

.about-modal-feature p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.about-modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #e2e8f0;
}

.about-modal-button {
    padding: 12px 26px;
    border: none;
    border-radius: 10px;
    background: #ea580c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.about-modal-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.25);
}

@media (max-width: 700px) {
    .about-modal {
        padding: 12px;
    }

    .about-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 30px 20px 24px;
        border-radius: 18px;
    }

    .about-modal-heading h2 {
        margin-right: 35px;
        font-size: 25px;
    }

    .about-modal-features {
        grid-template-columns: 1fr;
    }

    .about-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* ========================================
   Policies Modal
======================================== */

.policies-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.policies-modal.active {
    visibility: visible;
    opacity: 1;
}

.policies-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.policies-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.28);
    transform: translateY(25px) scale(0.97);
    transition: transform 0.25s ease;
}

.policies-modal.active .policies-modal-dialog {
    transform: translateY(0) scale(1);
}

.policies-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.policies-modal-close:hover {
    background: #dc2626;
    color: #ffffff;
    transform: rotate(90deg);
}

.policies-modal-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 12px 25px rgba(234, 88, 12, 0.25);
}

.policies-modal-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #ea580c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.policies-modal-heading h2 {
    margin: 0 45px 24px 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.2;
}

.policies-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.policies-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.policies-list li:hover {
    border-color: #fdba74;
    background: #fff7ed;
    transform: translateX(4px);
}

.policies-list li i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffedd5;
    color: #ea580c;
    font-size: 17px;
}

.policies-list li span {
    padding-top: 7px;
}

.policies-modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #e2e8f0;
}

.policies-modal-button {
    padding: 12px 26px;
    border: none;
    border-radius: 10px;
    background: #ea580c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.policies-modal-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.25);
}

@media (max-width: 700px) {
    .policies-modal {
        padding: 12px;
    }

    .policies-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 30px 20px 24px;
        border-radius: 18px;
    }

    .policies-modal-heading h2 {
        margin-right: 35px;
        font-size: 26px;
    }

    .policies-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .policies-list li {
        padding: 14px;
        font-size: 14px;
    }
}
/* ========================================
   Policies More Information
======================================== */

.policies-more-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 26px;
    padding: 17px 18px;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #eff6ff;
}

.policies-more-info > i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #2563eb;
    background: #dbeafe;
    font-size: 18px;
}

.policies-more-info p {
    margin: 0;
    padding-top: 5px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

.policies-more-info a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.policies-more-info a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .policies-more-info {
        gap: 11px;
        padding: 14px;
    }

    .policies-more-info > i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .policies-more-info p {
        padding-top: 2px;
        font-size: 13px;
    }
}

/* ========================================
   Certificate Showcase
======================================== */

.certificate-gallery-section {
    background: #f8fafc;
}

.certificate-showcase {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
    max-width: 1080px;
    margin: 0 auto;
}

.certificate-image {
    position: relative;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.certificate-image::before {
    content: "";
    position: absolute;
    inset: 25px -18px -18px 25px;
    z-index: -1;
    border-radius: 22px;
    background: #dbeafe;
}

.certificate-image img {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.certificate-details {
    max-width: 480px;
}

.certificate-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 30px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: 12px;
    font-weight: 800;
}

.certificate-details h3 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -1px;
}

.certificate-details > p {
    margin: 0 0 26px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

.certificate-details ul {
    display: grid;
    gap: 14px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.certificate-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.certificate-details li i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #15803d;
    background: #dcfce7;
    font-size: 12px;
}

.certificate-verify-button {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    color: #ffffff;
    background: #2563eb;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
    transition: 0.2s ease;
}

.certificate-verify-button:hover {
    color: #ffffff;
    background: #1d4ed8;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .certificate-showcase {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .certificate-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .certificate-details {
        max-width: 650px;
        margin: 0 auto;
        text-align: center;
    }

    .certificate-details ul {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .certificate-showcase {
        gap: 30px;
    }

    .certificate-image {
        padding: 9px;
        border-radius: 16px;
    }

    .certificate-image::before {
        display: none;
    }

    .certificate-image img {
        height: 480px;
        border-radius: 11px;
    }

    .certificate-details h3 {
        font-size: 29px;
    }

    .certificate-details > p {
        font-size: 14px;
    }

    .certificate-verify-button {
        width: 100%;
    }
}
/* ========================================
   Thermo Microchip Section
======================================== */

.thermo-microchip-section {
    background: #ffffff;
}

.thermo-microchip-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    align-items: center;
    gap: 70px;
    max-width: 1120px;
    margin: 0 auto;
}

.thermo-microchip-content {
    max-width: 580px;
}

.thermo-microchip-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 30px;
    color: #047857;
    background: #d1fae5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.thermo-microchip-content h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.thermo-microchip-content > p {
    margin: 0 0 30px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.85;
}

.thermo-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.thermo-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
}

.thermo-feature > i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #047857;
    background: #d1fae5;
    font-size: 17px;
}

.thermo-feature strong {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 750;
}

.thermo-feature span {
    display: block;
    color: #64748b;
    font-size: 12px;
    line-height: 1.55;
}

.thermo-contact-button {
    min-height: 49px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    color: #ffffff;
    background: #047857;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(4, 120, 87, 0.2);
    transition: 0.2s ease;
}

.thermo-contact-button:hover {
    color: #ffffff;
    background: #065f46;
    transform: translateY(-2px);
}

.thermo-microchip-image {
    position: relative;
    padding: 13px;
    border: 1px solid #dbe3ee;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.13);
}

.thermo-microchip-image::before {
    content: "";
    position: absolute;
    inset: 28px -18px -18px 28px;
    z-index: -1;
    border-radius: 24px;
    background: #d1fae5;
}

.thermo-microchip-image img {
    width: 100%;
    max-height: 690px;
    display: block;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
}

@media (max-width: 991px) {
    .thermo-microchip-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .thermo-microchip-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .thermo-microchip-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .thermo-feature {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .thermo-feature-grid {
        grid-template-columns: 1fr;
    }

    .thermo-microchip-image {
        padding: 9px;
        border-radius: 18px;
    }

    .thermo-microchip-image::before {
        display: none;
    }

    .thermo-microchip-image img {
        max-height: none;
        border-radius: 12px;
    }

    .thermo-contact-button {
        width: 100%;
    }
}

/* ========================================
   SKCI Promotional Banner
======================================== */

.skci-promo-section {
    background: #f8fafc;
}

.skci-promo-card {
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.skci-promo-image {
    padding: 14px;
    background: #0a0a0a;
}

.skci-promo-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: contain;
}

.skci-promo-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 28px;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

.skci-promo-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 700px;
}

.skci-promo-note > i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #b45309;
    background: #fef3c7;
    font-size: 17px;
}

.skci-promo-note p {
    margin: 0;
    padding-top: 3px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

.skci-promo-button {
    min-width: 160px;
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;
    border-radius: 11px;
    color: #ffffff;
    background: #0f172a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.skci-promo-button:hover {
    color: #ffffff;
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}

@media (max-width: 767px) {
    .skci-promo-card {
        border-radius: 18px;
    }

    .skci-promo-image {
        padding: 7px;
    }

    .skci-promo-image img {
        border-radius: 12px;
    }

    .skci-promo-actions {
        padding: 20px;
        align-items: stretch;
        flex-direction: column;
    }

    .skci-promo-button {
        width: 100%;
    }
}

/* ========================================
   Complete Pet Solutions Section
======================================== */

.complete-solutions-section {
    background: #ffffff;
}

.complete-solutions-card {
    max-width: 1160px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.complete-solutions-image {
    padding: 12px;
    background: #0b0b0b;
}

.complete-solutions-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: contain;
}

.complete-solutions-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 28px;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

.complete-solutions-summary {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 760px;
}

.complete-solutions-summary > i {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #b45309;
    background: #fef3c7;
    font-size: 20px;
}

.complete-solutions-summary strong {
    display: block;
    margin-bottom: 5px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.complete-solutions-summary p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

.complete-solutions-button {
    min-width: 172px;
    min-height: 49px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;
    border-radius: 11px;
    color: #ffffff;
    background: #0f172a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.complete-solutions-button:hover {
    color: #ffffff;
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}

@media (max-width: 767px) {
    .complete-solutions-card {
        border-radius: 18px;
    }

    .complete-solutions-image {
        padding: 7px;
    }

    .complete-solutions-image img {
        border-radius: 11px;
    }

    .complete-solutions-footer {
        padding: 20px;
        align-items: stretch;
        flex-direction: column;
    }

    .complete-solutions-button {
        width: 100%;
    }
}

/* Microchip Gallery */

.microchip-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.gallery-item img{
    width:100%;
    display:block;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

/* ========================================
   Contact Modal
======================================== */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.active {
    visibility: visible;
    opacity: 1;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.contact-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.28);
    transform: translateY(25px) scale(0.97);
    transition: transform 0.25s ease;
}

.contact-modal.active .contact-modal-dialog {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    color: #334155;
    background: #f1f5f9;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s ease;
}

.contact-modal-close:hover {
    color: #ffffff;
    background: #dc2626;
    transform: rotate(90deg);
}

.contact-modal-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ea580c);
    font-size: 30px;
    box-shadow: 0 12px 25px rgba(234, 88, 12, 0.25);
}

.contact-modal-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #ea580c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-modal-heading h2 {
    margin: 0 45px 24px 0;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.2;
}

.contact-card {
    display: grid;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
}

.contact-item-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ea580c;
    background: #ffedd5;
    font-size: 18px;
}

.contact-item h4 {
    margin: 0 0 7px;
    color: #0f172a;
    font-size: 15px;
}

.contact-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.contact-item a {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #e2e8f0;
}

.contact-modal-button {
    padding: 12px 26px;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    background: #ea580c;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-modal-button:hover {
    background: #c2410c;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .contact-modal {
        padding: 12px;
    }

    .contact-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 30px 20px 24px;
        border-radius: 18px;
    }

    .contact-modal-heading h2 {
        font-size: 26px;
    }

    .contact-item {
        padding: 14px;
    }
}


/* Layout Engine for Pet Owner Forms */
.form-section {
    background: #f9fbfd;
    border-bottom: 1px solid #e3ebf6;
}
.verification-form-vertical {
    background: #ffffff;
    border: 1px solid #e3ebf6;
    border-top: 4px solid #1a365d; /* Matches default theme structure */
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    margin-bottom: 3rem;
}
.form-divider {
    border: 0;
    border-top: 1px dashed #e3ebf6;
    margin: 2rem 0;
}
.form-subheading {
    font-size: 1.15rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.form-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}
.form-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}
.form-grid-four {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #4a5568;
}
.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #3182ce;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}
.input-with-button {
    display: flex;
    gap: 0.5rem;
}
.input-with-button input {
    flex-grow: 1;
}
.inline-verify-btn {
    background: #2b6cb0;
    color: #fff;
    border: none;
    padding: 0 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}
.inline-verify-btn:hover {
    background: #1a365d;
}
.form-submit-btn {
    margin-top: 1.5rem;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .verification-form-vertical { padding: 1.5rem; }
    .form-grid-two, .form-grid-three, .form-grid-four {
        grid-template-columns: 1fr;
    }
}
    