:root {
    /* ===== HERO & FOOTER ===== */
    --hero-bg-from: #93c5fd;
    --hero-bg-mid: #2563eb;
    --hero-bg-mid2: #1d4ed8;
    --hero-bg-end: #1e293b;
    --hero-highlight: #facc15;

    --footer-bg: #020617;
    --footer-text: #9ca3af;
    --footer-link: #e5e7eb;

    --mini-map-border: #cbd5f5;
    --mini-map-bg: #f1f5f9;

    --section-alt-bg: #f5f7f8;
    --process-bg: #f7f9fa;

    --grid-border: #e4e4e4;
    --partner-border: #d1d5db;

    /* ===== MÀU CHỦ ĐẠO ===== */
    --primary: #27ae60;
    --primary-dark: #1e8c4d;
    --primary-light: #e8f7ef;
    --primary-soft: #d9f3e5;

    /* ===== MÀU TRUNG TÍNH ===== */
    --dark: #0f172a;
    --text: #1f2933;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg-light: #f9fafb;

    /* ===== MÀU TRẠNG THÁI ===== */
    --danger: #ef4444;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
}

.navbar {
    backdrop-filter: blur(12px);
}

/* ===== NAVBAR HEIGHT & VISIBLE TEXT ===== */
.navbar {
    min-height: 70px;                /* đủ chỗ cho slogan */
    padding-top: 8px;
    padding-bottom: 8px;
    overflow: visible !important;    /* không cắt phần logo */
}

/* ===== CLEAN247 BRAND ===== */
.brand-clean247 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-clean247-icon {
    height: 30px;                    /* icon vừa phải */
    width: auto;
    flex-shrink: 0;
}

.brand-clean247-text {
    line-height: 1.1;
}

.brand-clean247-title {
    font-size: 1.15rem;              /* cỡ chữ như ảnh */
    font-weight: 700;
    color: #111827;
}

.brand-clean247-title span {
    color: var(--primary);           /* 247.vn màu xanh chủ đạo */
}

.brand-clean247-slogan {
    font-size: 0.84rem;
    color: #9ca3af;
    margin-top: 1px;
}


.navbar-brand span {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Icon trong navbar – soft pill + màu primary */
.navbar .nav-link i {
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 999px;
    padding: 4px 6px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .18s ease;
}

/* Hover: đổi màu icon + nền, hơi nổi lên */
.navbar .nav-link:hover i,
.navbar .nav-link:focus i,
.navbar .nav-link.active i {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 6px rgba(39,174,96,0.35);
    transform: translateY(-1px);
}


.hero-section {
    background: radial-gradient(circle at top left, var(--hero-bg-from) 0, var(--hero-bg-mid) 40%, var(--hero-bg-mid2) 70%, var(--hero-bg-end) 100%);
    color: #fff;
    padding: 86px 0 70px;
}

.hero-badge {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: .85rem;
}

.hero-main-title {
    font-size: clamp(2.2rem, 3vw, 2.6rem);
    font-weight: 750;
}

.hero-highlight {
    color: var(--hero-highlight);
}

.hero-points li {
    margin-bottom: .3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--muted);
    margin-bottom: 2rem;
}

.section-light {
    background: var(--bg-light);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 18px;
}

.badge-soft {
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 3px 10px;
}

.card-elevated {
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.card-hover {
    transition: all .2s ease-in-out;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.price-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: all .2s ease-in-out;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.portfolio-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #fff;
    transition: all .2s ease-in-out;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.75rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    margin-right: 4px;
    margin-bottom: 4px;
}

.tag-pill i {
    font-size: 0.7rem;
    margin-right: 4px;
}

.partner-chip {
    border-radius: 999px;
    border: 1px dashed var(--partner-border);
    padding: 5px 12px;
    background: #fff;
    font-size: 0.8rem;
}

.faq-item + .faq-item {
    border-top: 1px solid var(--border);
    margin-top: 12px;
    padding-top: 12px;
}

.contact-card {
    border-radius: 18px;
    border: none;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

.required::after {
    content: "*";
    color: var(--danger);
    margin-left: 3px;
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 28px 0 16px;
}

.footer a {
    color: var(--footer-link);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-actions a {
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.28);
    font-size: 0.86rem;
}

.pill-location {
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    padding: 6px 12px;
    font-size: 0.85rem;
}

.mini-map {
    border-radius: 18px;
    border: 1px dashed var(--mini-map-border);
    padding: 18px;
    background: var(--mini-map-bg);
    font-size: 0.85rem;
}

/* News block */
.news-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #ffffff;
    padding: 14px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-meta {
    font-size: 0.78rem;
    color: var(--muted);
}

.badge-news {
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

.news-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin: 6px 0 4px;
}

.news-excerpt {
    font-size: 0.85rem;
    color: var(--text);
}

.news-thumb-wrapper {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 8px;
}

.news-thumb-wrapper img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
}

.owl-theme .owl-dots .owl-dot.active span {
    transform: scale(1.2);
}

/* Portfolio carousel */
.portfolio-carousel .portfolio-card {
    margin: 4px 0;
}

/* Testimonial & FAQ carousel cards */
.testimonial-card,
.faq-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 14px 16px;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--muted);
}

.faq-card h6 {
    font-size: 0.95rem;
}

/* Hiệu ứng slide từ dưới lên cho carousel (feedback & FAQ) */
@keyframes slideUpIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-15px);
    }
}

.owl-animate-up-in {
    animation: slideUpIn .45s ease-out both;
}

.owl-animate-up-out {
    animation: slideUpOut .45s ease-in both;
}

/* Block Đặt dịch vụ */
#contact .section-title {
    font-size: 1.6rem;
    margin-bottom: .4rem;
}

#contact .section-subtitle {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

#contact .contact-card {
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

#contact .form-label {
    font-size: 0.9rem;
}

#contact .form-control,
#contact .form-select {
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    #contact .row.g-4 {
        row-gap: 1.5rem;
    }
}

/* Quy trình làm việc */
.process-section {
    background: var(--bg-light);
}

.process-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 12px;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 32px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    text-align: left;
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.process-step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 2px solid var(--primary);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.process-step-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.process-step-text {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .process-steps {
        flex-direction: column;
        gap: 18px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        padding-left: 4px;
    }
}

/* ===== GIỚI THIỆU + DỊCH VỤ ===== */
.section-intro {
    padding: 40px 0 20px;
}

.service-grid-item {
    border: 1px solid var(--grid-border);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    margin-bottom: 16px;
    background: #fff;
    transition: .2s;
}

.service-grid-item i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 6px;
}

.service-grid-item h6 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-grid-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.section-intro .company-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-intro .company-title span {
    color: var(--primary);
}

.section-intro .company-desc {
    font-size: 0.95rem;
    color: var(--muted);
}

.section-intro ul {
    padding-left: 1.1rem;
    font-size: 0.93rem;
}

/* ===== BẠN CẦN TƯ VẤN ===== */
.section-consult {
    background: var(--primary);
    color: #fff;
    padding: 18px 0;
}

.section-consult .consult-text {
    font-size: 1rem;
    font-weight: 500;
}

.section-consult .consult-sub {
    font-size: 0.9rem;
    opacity: 0.9;
}

.consult-action {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.consult-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: .2s;
}

.consult-pill i {
    font-size: 18px;
}

.consult-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== TIÊU CHÍ HOẠT ĐỘNG ===== */
.section-criteria {
    padding: 40px 0;
}

.section-criteria .section-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.criteria-title-sub {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 24px;
}

.criteria-card {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.criteria-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.criteria-card-body {
    padding: 18px 16px 18px;
    background: var(--primary);
    color: #fff;
}

.criteria-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 22px;
}

.criteria-card-body h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.criteria-card-body p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* mobile */
@media (max-width: 767.98px) {
    .consult-action {
        justify-content: flex-start;
        margin-top: 8px;
    }
}

/* ===== TIÊU CHÍ: ICON 2 BÊN + HÌNH Ở GIỮA ===== */
.section-clean-features {
    background: var(--section-alt-bg);
    padding: 40px 0 50px;
}

.clean-feature-item {
    text-align: center;
    margin-bottom: 32px;
}

.clean-feature-icon {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 8px;
}

.clean-feature-title {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.clean-feature-text {
    font-size: 0.9rem;
    color: var(--dark);
    margin: 0;
}

.clean-girl-wrapper {
    text-align: center;
}

.clean-girl-wrapper img {
    max-width: 100%;
    height: auto;
}

/* desktop: căn giống demo – icon trên & dưới */
@media (min-width: 992px) {
    .section-clean-features .col-lg-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* ===== QUY TRÌNH LÀM VIỆC ===== */
.section-process {
    background: var(--process-bg);
    padding: 50px 0 60px;
}

.process-logo {
    width: 60px;
    margin: 0 auto 12px;
    opacity: 0.9;
}

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.process-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 38px;
}

.process-step {
    text-align: center;
    padding: 0 18px;
}

.process-step .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid var(--primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    transition: .25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.process-step:hover .step-number {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.process-step .step-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}

.process-step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.process-step-text {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0 auto;
    max-width: 260px;
}

/* ===== DỊCH VỤ VỆ SINH – CARD ===== */
.section-services {
    background: var(--bg-light);
}

.service-card-pro {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    padding: 18px 18px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .2s;
}

.service-card-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.service-pill i {
    font-size: 0.85rem;
}

.service-icon-lg {
    font-size: 30px;
    color: var(--primary);
    margin-right: 8px;
}

.service-card-pro h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 10px;
}

.service-feature-list {
    font-size: 0.86rem;
    color: var(--text);
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.service-feature-list li {
    margin-bottom: 3px;
}

.service-feature-list i {
    color: var(--primary);
    margin-right: 6px;
}

.service-price {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card-pro .btn {
    font-size: 0.88rem;
}

/* Dịch vụ liên quan khác */
.extra-services {
    margin-top: 22px;
    font-size: 0.9rem;
}

.extra-services-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.extra-service-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    margin: 4px 6px 0 0;
    font-size: 0.85rem;
}

.extra-service-item i {
    color: var(--primary);
}

/* mobile chỉnh padding một chút */
@media (max-width: 767.98px) {
    .service-card-pro {
        padding: 16px 14px;
    }
}

/* ===== SERVICE CARD NEW UI ===== */
.service-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    padding: 20px 20px 16px;
    transition: .25s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* label phía trên góc phải (chỉ trong service-card) */
.service-card .service-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 999px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card .service-pill i {
    font-size: 0.85rem;
}

/* icon chính của service */
.service-icon {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 6px;
}

/* Title */
.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

/* mô tả nhỏ */
.service-features {
    list-style: none;
    padding-left: 0;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 12px;
}

.service-features li {
    margin-bottom: 4px;
}

.service-features i {
    color: var(--primary-dark);
    margin-right: 6px;
}

/* giá */
.service-price {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* nút */
.service-card .btn {
    font-size: 0.85rem;
}

/* CARD WRAPPER */
.price-card-grid .price-card-box {
    position: relative;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 18px 16px 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: .22s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card-grid .price-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* ICON TRONG CARD */
.price-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
    border: 2px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.15);
    transition: .2s;
}

.price-card-grid .price-card-box:hover .price-card-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.22);
}

/* BADGE – GÓC TRÊN BÊN PHẢI */
.price-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.25);
    letter-spacing: 0.3px;
}

.price-card-badge-soft {
    background: var(--primary-soft);
    color: var(--primary-dark);
    box-shadow: none;
}

.price-card-badge i {
    font-size: 0.85rem;
    margin-right: 6px;
}

/* TITLE + DESCRIPTION */
.price-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    margin: 6px 0 4px;
    text-align: center;
    width: 100%;
}

.price-card-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 10px;
}

/* META LIST */
.price-card-meta {
    list-style: none;
    padding-left: 0;
    margin: 0 0 10px;
    font-size: 0.86rem;
    color: var(--text);
}

.price-card-meta li + li {
    margin-top: 3px;
}

.price-card-meta i {
    color: var(--primary-dark);
    margin-right: 6px;
    width: 14px;
    text-align: center;
}

/* FOOTER */
.price-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
}

.price-card-price {
    font-size: 0.92rem;
    color: var(--dark);
}

.price-card-price strong {
    color: var(--primary);
    font-size: 1rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--muted);
}

@media (max-width: 575.98px) {
    .price-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-card-footer .btn {
        width: 100%;
        text-align: center;
    }
}
.footer {
    background: #020617;
    color: #c7cdd4;
    padding: 40px 0 20px;
    font-size: 0.92rem;
}
.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-text {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 12px;
}

.footer-contact p,
.footer-contact a {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 4px;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 6px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #c7cdd4;
    text-decoration: none;
    transition: .2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1rem;
    transition: .25s;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-line {
    border-color: rgba(255,255,255,0.1);
    margin: 24px 0;
}
.text-muted { color: #9ca3af !important;}