@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
    --fc-bg: #f6f8f2;
    --fc-bg-soft: #eef4ec;
    --fc-surface: rgba(255, 255, 255, 0.82);
    --fc-surface-strong: #ffffff;
    --fc-surface-dark: #16352d;
    --fc-surface-dark-2: #102720;
    --fc-line: rgba(24, 56, 47, 0.12);
    --fc-line-strong: rgba(24, 56, 47, 0.2);
    --fc-text: #17322b;
    --fc-text-soft: #557067;
    --fc-text-muted: #738980;
    --fc-brand: #1f7f68;
    --fc-brand-2: #7f9b4f;
    --fc-brand-3: #d9bf72;
    --fc-deep: #11221d;
    --fc-accent: #0b6d80;
    --fc-shadow: 0 24px 60px rgba(18, 43, 36, 0.12);
    --fc-shadow-soft: 0 14px 30px rgba(18, 43, 36, 0.08);
    --fc-radius-lg: 32px;
    --fc-radius-md: 24px;
    --fc-radius-sm: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(127, 155, 79, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(31, 127, 104, 0.1), transparent 24%),
        linear-gradient(180deg, #fbfcf8 0%, #f3f7f0 46%, #eef5ee 100%);
    color: var(--fc-text);
    font-family: "Manrope", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
    color: var(--fc-text);
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.03em;
}

p,
li,
span,
label,
input,
textarea,
select {
    color: var(--fc-text-soft);
}

a {
    color: var(--fc-brand);
    text-decoration: none;
}

a:hover {
    color: var(--fc-deep);
}

.preloader {
    background: #f6f8f2;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(70px);
    z-index: -1;
}

.site-shell::before {
    top: 12px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: rgba(127, 155, 79, 0.16);
}

.site-shell::after {
    top: 180px;
    right: -120px;
    width: 340px;
    height: 340px;
    background: rgba(11, 109, 128, 0.08);
}

.scrollToTop {
    background: linear-gradient(135deg, var(--fc-brand), var(--fc-brand-3));
    color: #fff;
    box-shadow: 0 12px 28px rgba(31, 127, 104, 0.24);
}

.section-shell,
.hero-panel-card,
.glass-card,
.stat-card,
.service-card,
.rate-card,
.timeline-card,
.contact-card,
.faq-shell,
.cta-band,
.auth-panel,
.auth-form-card,
.auth-side-card,
.footer-card,
.team-card,
.admin-form-shell {
    background: var(--fc-surface);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--fc-shadow);
}

.public-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 250, 244, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(24, 56, 47, 0.08);
}

.public-header .overlay {
    background: transparent !important;
}

.public-header .navbar {
    padding: 1rem 0;
}

.brand-mark,
.brand-mark:visited {
    display: inline-flex;
    align-items: center;
}

.brand-mark img {
    width: auto;
    max-height: 46px;
}

.brand-mark.brand-mark-surface {
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(18, 43, 36, 0.12);
}

.public-header .nav-link {
    color: var(--fc-text-soft) !important;
    font-weight: 700;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.public-header .nav-link.active,
.public-header .nav-link:hover {
    color: var(--fc-text) !important;
}

.public-header .navbar-toggler {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid var(--fc-line);
    background: rgba(255, 255, 255, 0.66);
}

.public-header .navbar-toggler i {
    color: var(--fc-text);
}

.public-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--fc-text);
    border: 1px solid rgba(24, 56, 47, 0.08);
    box-shadow: var(--fc-shadow-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.public-pill i {
    color: var(--fc-brand);
}

.cmn-btn,
button.cmn-btn,
.btn-arrow {
    background: linear-gradient(135deg, var(--fc-brand), #2b9b80);
    border: 1px solid transparent;
    color: #fff !important;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(31, 127, 104, 0.2);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cmn-btn:hover,
button.cmn-btn:hover,
.btn-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(31, 127, 104, 0.24);
    background: linear-gradient(135deg, #2c8f76, #183d34);
}

.cmn-btn.second,
.cmn-btn.light-outline {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 56, 47, 0.14);
    color: var(--fc-text) !important;
    box-shadow: none;
}

.cmn-btn.second:hover,
.cmn-btn.light-outline:hover {
    background: rgba(255, 255, 255, 0.96);
    color: var(--fc-brand) !important;
}

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

.hero-home {
    padding: 46px 0 26px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(31, 127, 104, 0.08);
    color: var(--fc-brand);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-home .hero-copy h1,
.inner-hero .hero-copy h1,
.auth-copy h1 {
    font-size: clamp(2.9rem, 6vw, 5.2rem);
    line-height: 0.97;
    margin: 18px 0 20px;
}

.hero-home .hero-copy p,
.inner-hero .hero-copy p,
.auth-copy p {
    font-size: 1.06rem;
    line-height: 1.75;
    max-width: 44rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stage {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
}

.hero-visual-wrap {
    position: relative;
}

.hero-photo-card {
    overflow: hidden;
    border-radius: 36px;
    background: #dde7df;
    box-shadow: var(--fc-shadow);
}

.hero-photo-card img {
    display: block;
    width: 100%;
    height: clamp(380px, 52vw, 640px);
    object-fit: cover;
}

.hero-photo-card.hero-photo-card-tiny {
    max-width: 220px;
    margin-left: auto;
}

.hero-photo-card.hero-photo-card-tiny img {
    height: 180px;
    object-fit: cover;
}

.floating-note {
    position: absolute;
    left: -16px;
    bottom: 22px;
    width: min(100%, 320px);
    padding: 20px;
    border-radius: 26px;
    background: rgba(17, 34, 29, 0.9);
    color: #eaf4ef;
    box-shadow: 0 18px 40px rgba(17, 34, 29, 0.28);
}

.floating-note strong,
.floating-note span,
.floating-note p,
.floating-note li {
    color: inherit;
}

.floating-note strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
}

.hero-card-grid,
.services-grid,
.rates-grid,
.insight-grid,
.contact-grid,
.team-grid,
.timeline-grid,
.feature-grid {
    display: grid;
    gap: 18px;
}

.hero-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.stat-card,
.service-card,
.rate-card,
.contact-card,
.team-card,
.timeline-card {
    padding: 24px;
    border-radius: var(--fc-radius-md);
}

.stat-card strong,
.rate-value {
    display: block;
    color: var(--fc-text);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 2.2vw, 2.5rem);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-card p,
.rate-card p,
.service-card p,
.timeline-card p,
.contact-card p {
    margin-bottom: 0;
}

.section-shell {
    padding: 34px;
    border-radius: var(--fc-radius-lg);
}

.cool-section {
    background:
        linear-gradient(180deg, rgba(243, 249, 251, 0.96), rgba(236, 245, 244, 0.96)),
        radial-gradient(circle at top right, rgba(11, 109, 128, 0.1), transparent 30%);
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 24px;
}

.section-heading.section-heading-wide {
    max-width: 60rem;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading .title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.05;
    margin-top: 14px;
    margin-bottom: 14px;
}

.soft-text {
    color: var(--fc-text-muted);
}

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

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 246, 0.96));
}

.service-icon,
.rate-icon,
.contact-icon,
.feature-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(31, 127, 104, 0.16), rgba(217, 191, 114, 0.16));
    color: var(--fc-brand);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.rate-icon {
    background: linear-gradient(145deg, rgba(31, 118, 210, 0.16), rgba(31, 118, 210, 0.08));
    color: #1f76d2;
}

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

.feature-card {
    padding: 0;
    background: transparent;
}

.feature-card h4 {
    margin-bottom: 10px;
}

.rates-wrap {
    background: linear-gradient(180deg, #0f4660 0%, #16607b 52%, #1d6a72 100%);
    border-radius: 38px;
    padding: 38px;
    color: #edf5f2;
    box-shadow: 0 28px 50px rgba(17, 47, 40, 0.22);
}

.rates-wrap .section-heading,
.rates-wrap .section-heading .title,
.rates-wrap .section-heading p,
.rates-wrap .section-kicker {
    color: #edf5f2;
}

.rates-wrap .section-kicker {
    background: rgba(255, 255, 255, 0.08);
}

.rates-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rate-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    box-shadow: none;
}

.rate-card.savings-featured .rate-value {
    color: #1f76d2;
}

.rate-card.savings-featured small {
    background: rgba(31, 118, 210, 0.12);
    color: #1f76d2;
}

.rate-card.smart-planning .rate-value {
    color: #1f76d2;
}

.rate-card.smart-planning small {
    background: rgba(31, 118, 210, 0.12);
    color: #1f76d2;
}

.rate-card small {
    display: inline-flex;
    margin-top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    background: rgba(31, 127, 104, 0.1);
    color: var(--fc-brand);
}

.rate-card.credit small {
    background: rgba(31, 118, 210, 0.12);
    color: #1f76d2;
}

.rate-card.loan small {
    background: rgba(31, 118, 210, 0.12);
    color: #1f76d2;
}

.rate-card.credit .rate-value {
    color: #1f76d2;
}

.rate-card.loan .rate-value {
    color: #1f76d2;
}

.rate-note {
    margin-top: 18px;
    color: rgba(237, 245, 242, 0.78);
}

.split-panel {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.image-stack {
    display: grid;
    gap: 18px;
}

.image-stack img,
.gallery-panel img,
.team-card img {
    width: 100%;
    display: block;
    border-radius: 26px;
    box-shadow: var(--fc-shadow-soft);
}

.gallery-panel {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.partner-tile {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 247, 0.92));
    border: 1px solid rgba(11, 109, 128, 0.12);
    box-shadow: 0 16px 34px rgba(11, 109, 128, 0.08);
}

.partner-tile img {
    max-width: 100%;
    max-height: 44px;
    opacity: 0.9;
}

.gallery-panel .stacked {
    display: grid;
    gap: 18px;
}

.list-check,
.compact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-check li,
.compact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 14px;
}

.list-check i,
.compact-list i {
    color: var(--fc-brand);
    margin-top: 5px;
}

.dark-band {
    background: linear-gradient(180deg, #122923 0%, #0f201c 100%);
    color: #edf4f0;
    border-radius: 38px;
    padding: 38px;
    box-shadow: 0 28px 50px rgba(15, 32, 28, 0.24);
}

.blue-accent-section {
    background:
        linear-gradient(180deg, rgba(239, 248, 251, 0.98), rgba(235, 243, 248, 0.96)),
        radial-gradient(circle at top left, rgba(11, 109, 128, 0.14), transparent 32%);
}

.card-pair-showcase {
    display: grid;
    gap: 18px;
}

.card-frame {
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 242, 247, 0.94));
    border: 1px solid rgba(11, 109, 128, 0.14);
    box-shadow: 0 18px 36px rgba(11, 109, 128, 0.1);
}

.card-frame img {
    width: 100%;
    display: block;
}

.dark-band .title,
.dark-band p,
.dark-band h4,
.dark-band li,
.dark-band .section-kicker {
    color: #edf4f0;
}

.dark-band .timeline-card,
.dark-band .timeline-card p,
.dark-band .timeline-card h4 {
    color: #f4fbf8;
}

.dark-band .section-kicker {
    background: rgba(255, 255, 255, 0.08);
}

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

.timeline-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-card small {
    display: inline-flex;
    margin-bottom: 12px;
    font-weight: 800;
    color: #9fe1d5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.inner-hero {
    padding: 40px 0 18px;
}

.crumbs,
.crumbs a {
    color: var(--fc-text-muted);
    font-weight: 700;
}

.crumbs .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(85, 112, 103, 0.6);
}

.contact-layout,
.auth-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: start;
}

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

.contact-card h4,
.service-card h4,
.rate-card h4,
.team-card h5 {
    margin-bottom: 10px;
}

.about-hero-app {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(232, 242, 247, 0.96), rgba(220, 234, 242, 0.92));
}

.about-hero-app img {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
}

.team-grid.team-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.team-grid.team-grid-compact .team-card {
    padding: 18px;
}

.team-grid.team-grid-compact .team-card img {
    height: 190px;
    object-fit: cover;
    margin-bottom: 14px;
}

.team-grid.team-grid-compact .team-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.team-grid.team-grid-compact .team-card p {
    font-size: 0.94rem;
}

.faq-shell {
    padding: 34px;
    border-radius: var(--fc-radius-lg);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 56, 47, 0.08);
    border-radius: 20px !important;
    overflow: hidden;
}

.accordion-item + .accordion-item {
    margin-top: 12px;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--fc-text);
    font-family: "Sora", sans-serif;
    font-weight: 700;
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    color: var(--fc-text-soft);
}

.cta-band {
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 247, 242, 0.96));
}

.cta-band .section-kicker {
    margin-bottom: 22px;
}

.footer-section {
    padding: 36px 0 22px;
    background: linear-gradient(180deg, #123f66 0%, #103757 100%);
    margin-top: 34px;
}

.footer-section .container {
    position: relative;
}

.footer-card {
    padding: 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.footer-card h5,
.footer-card p,
.footer-card a,
.footer-card li,
.footer-card span,
.footer-bottom p {
    color: rgba(237, 244, 240, 0.82);
}

.footer-card .brand-mark img {
    max-height: 48px;
}

.footer-card h5 {
    margin-bottom: 18px;
}

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

.footer-links li + li {
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.footer-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-card input {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #edf4f0;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sign-in-up,
.sign-in-up .overlay,
.banner-section .overlay,
.about-section .overlay,
.our-core-values .overlay,
.our-team .overlay,
.apply-for-loan .overlay,
.account-feature .overlay,
.get-start .overlay,
.features-section .overlay,
.solutions-business .overlay,
.card-section .overlay,
.faqs-section .overlay,
.latest-articles .overlay,
.testimonial-section .overlay {
    background: transparent !important;
}

.modern-auth {
    padding: 42px 0;
}

.auth-panel {
    padding: 16px;
    border-radius: 40px;
}

.auth-layout {
    align-items: stretch;
}

.auth-side-card,
.auth-form-card,
.admin-form-shell {
    padding: 34px;
    border-radius: 32px;
}

.auth-side-card {
    background: linear-gradient(180deg, #16352d 0%, #102720 100%);
    position: relative;
    overflow: hidden;
}

.auth-side-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 191, 114, 0.28), transparent 65%);
}

.auth-side-card * {
    position: relative;
}

.auth-side-card .section-kicker,
.auth-side-card .title,
.auth-side-card p,
.auth-side-card li,
.auth-side-card span,
.auth-side-card a {
    color: #edf4f0;
}

.auth-side-card .section-kicker {
    background: rgba(255, 255, 255, 0.08);
}

.auth-side-card .brand-mark img {
    max-height: 50px;
}

.auth-side-card .brand-mark {
    width: fit-content;
    margin-bottom: 12px;
}

.auth-side-image {
    margin-top: 24px;
    overflow: hidden;
    border-radius: 26px;
}

.auth-side-image img {
    width: 100%;
    display: block;
    height: 260px;
    object-fit: cover;
}

.auth-form-card .section-heading {
    margin-bottom: 14px;
}

.auth-mobile-top {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.auth-mobile-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--fc-text);
}

.auth-form-card .single-input,
.admin-form-shell .single-input {
    margin-bottom: 18px;
}

.auth-form-card label,
.admin-form-shell label {
    display: block;
    margin-bottom: 10px;
    color: var(--fc-text);
    font-weight: 700;
}

.auth-form-card input,
.auth-form-card textarea,
.auth-form-card select,
.admin-form-shell input,
.admin-form-shell textarea,
.admin-form-shell select,
.footer-card input {
    width: 100%;
    border-radius: 16px !important;
    border: 1px solid var(--fc-line) !important;
    background: rgba(246, 248, 242, 0.92) !important;
    color: var(--fc-text) !important;
    min-height: 56px;
    padding: 0 18px !important;
    box-shadow: none !important;
}

.auth-form-card textarea,
.admin-form-shell textarea {
    min-height: 140px;
    padding: 16px 18px !important;
}

.auth-form-card input::placeholder,
.auth-form-card textarea::placeholder,
.admin-form-shell input::placeholder,
.admin-form-shell textarea::placeholder {
    color: var(--fc-text-muted);
}

.auth-form-card input:focus,
.auth-form-card textarea:focus,
.auth-form-card select:focus,
.admin-form-shell input:focus,
.admin-form-shell textarea:focus,
.admin-form-shell select:focus {
    border-color: rgba(31, 127, 104, 0.34) !important;
    box-shadow: 0 0 0 4px rgba(31, 127, 104, 0.1) !important;
}

.password-wrap {
    position: relative;
}

.password-wrap img.showPass {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}

.password-wrap input {
    padding-right: 56px !important;
}

.helper-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    color: var(--fc-text-muted);
    flex-wrap: wrap;
}

.alert {
    border-radius: 16px;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(31, 127, 104, 0.1);
    border-color: rgba(31, 127, 104, 0.14);
    color: #17483c;
}

.alert-danger {
    background: rgba(196, 70, 70, 0.08);
    border-color: rgba(196, 70, 70, 0.14);
    color: #8a2f2f;
}

.alert-warning {
    background: rgba(217, 107, 26, 0.08);
    border-color: rgba(217, 107, 26, 0.14);
    color: #8b4c1f;
}

.status-note {
    margin-top: 14px;
    color: var(--fc-text-muted);
    font-size: 0.95rem;
}

.admin-shell {
    padding: 38px 0;
}

.admin-form-shell .form-header {
    margin-bottom: 22px;
}

.admin-form-shell .avatar-preview {
    width: 200px;
    height: 200px;
    display: block;
    object-fit: cover;
    margin: 0 auto 18px;
    border-radius: 28px;
    background: rgba(31, 127, 104, 0.08);
    border: 1px dashed rgba(31, 127, 104, 0.3);
}

.mini-note {
    display: block;
    margin-top: 8px;
    color: var(--fc-text-muted);
    font-size: 0.9rem;
}

.public-dark-band {
    background: linear-gradient(180deg, rgba(17, 78, 121, 0.96), rgba(13, 61, 98, 0.98));
    border-radius: 34px;
    padding: 28px;
    color: #edf4f0;
}

.public-dark-band * {
    color: inherit;
}

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

@media (max-width: 991px) {
    .hero-stage,
    .split-panel,
    .gallery-panel,
    .contact-layout,
    .auth-layout,
    .services-grid,
    .feature-grid,
    .timeline-grid,
    .hero-card-grid,
    .contact-grid,
    .team-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .public-header .navbar-collapse {
        margin-top: 16px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(24, 56, 47, 0.08);
        box-shadow: var(--fc-shadow-soft);
    }

    .hero-home .hero-copy h1,
    .inner-hero .hero-copy h1,
    .auth-copy h1 {
        font-size: clamp(2.4rem, 8vw, 4rem);
    }

    .floating-note {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .rates-wrap,
    .dark-band,
    .faq-shell,
    .cta-band,
    .section-shell {
        padding: 28px;
    }

    .public-header .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .public-header .navbar-brand {
        margin-left: 4px;
    }

    .public-header .navbar-toggler {
        margin-right: 4px;
    }

    .modern-auth .auth-side-card {
        display: none;
    }

    .modern-auth .auth-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .public-section,
    .modern-auth,
    .admin-shell {
        padding: 28px 0;
    }

    .auth-side-card,
    .auth-form-card,
    .admin-form-shell,
    .footer-card {
        padding: 24px;
    }

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

    .hero-actions .cmn-btn,
    .btn-area .cmn-btn {
        width: 100%;
        text-align: center;
    }

    .hero-photo-card img {
        height: 320px;
    }

    .rates-grid {
        grid-template-columns: 1fr;
    }
}
