/* ================================================
   CAPN FINANCIAL - MAIN STYLESHEET
   style.css
   Fonts: DM Sans, Inter
================================================ */

/* ---- ROOT VARIABLES ---- */
:root {
    --primary: #3352CC;
    --primary-dark: #2641a8;
    --primary-light: #eef0fb;
    --accent: #f0f4ff;
    --dark: #0d1b2a;
    --dark-2: #1a2940;
    --text: #374151;
    --text-light: rgba(18, 20, 29, 1);
    --text-muted: #9ca3af;
    --white: #ffffff;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --success: #10b981;
    --stats-bg: #111827;
    --font-dm: 'DM Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

/* ---- BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-dm);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

/* ================================================
   NAVBAR
================================================ */
.capn-navbar {
    background: var(--white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition);
}

.capn-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.capn-navbar .navbar-nav .nav-link {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    position: relative;
    transition: color var(--transition);
}

.capn-navbar .navbar-nav .nav-link:hover,
.capn-navbar .navbar-nav .nav-link.active {
    color: #000;
}


/* Dropdown */
.capn-navbar .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
    animation: dropFade 0.2s ease;
}

@keyframes dropFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.capn-navbar .dropdown-item {
    font-size: 14px;
    font-family: var(--font-inter);
    color: var(--text);
    padding: 9px 14px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.capn-navbar .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Nav Buttons matching exact design */
.btn-nav-login {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: #2b2b2b;
    padding: 8px 16px;
    background: transparent;
    border: none;
    transition: all var(--transition);
}

.btn-nav-login:hover {
    color: var(--primary);
}

.btn-nav-apply {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: #18191c;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
    display: inline-block;
}

.btn-nav-apply:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(51, 82, 204, 0.3);
}

.toggler-icon {
    font-size: 22px;
    color: var(--dark);
}

/* ================================================
   MOBILE OFFCANVAS (slides from right, <992px)
================================================ */
.capn-offcanvas {
    position: fixed;
    top: 0;
    right: -340px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 10000;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.capn-offcanvas.open {
    right: 0;
}

.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.offcanvas-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.offcanvas-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.offcanvas-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.btn-close-offcanvas {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1f2937;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    outline: none;
    box-shadow: none;
    flex-shrink: 0;
    transition: all var(--transition);
}

.btn-close-offcanvas i {
    font-size: 16px;
    line-height: 1;
    display: block;
}

.btn-close-offcanvas:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.offcanvas-body-custom {
    padding: 24px;
    flex: 1;
}

.offcanvas-nav li {
    border-bottom: 1px solid var(--border-light);
}

.offcanvas-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition);
}

.offcanvas-nav li a:hover,
.offcanvas-nav li a.active {
    color: var(--primary);
}

.offcanvas-nav .sub-menu {
    display: none;
    padding-left: 16px;
    padding-bottom: 8px;
}

.offcanvas-nav .sub-menu.open {
    display: block;
}

.offcanvas-nav .sub-menu li {
    border: none;
}

.offcanvas-nav .sub-menu li a {
    font-size: 14px;
    padding: 8px 0;
    font-weight: 400;
    color: var(--text-light);
}

.offcanvas-nav .sub-menu li a:hover {
    color: var(--primary);
}

.offcanvas-btns .btn-nav-login {
    display: block;
    text-align: center;
}

.offcanvas-btns .btn-nav-apply {
    display: block;
    text-align: center;
}

/* ================================================
   HERO SECTION
================================================ */
.hero-section {
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}


.hero-content {
    padding-right: 30px;
}

.hero-title {
    font-family: var(--font-dm);
    font-size: 46px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(18, 20, 29, 1);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 624px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-capn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: #18191c;
    padding: 12px 26px;
    border-radius: 8px;
    transition: all var(--transition);
}

.btn-primary-capn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 82, 204, 0.3);
}

.btn-outline-capn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: #18191c;
    background: var(--white);
    padding: 11px 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-outline-capn:hover {
    border-color: #18191c;
    color: #18191c;
    background: #f9fafb;
    transform: translateY(-2px);
}

.btn-outline-capn i {
    font-size: 15px;
    color: #18191c;
}

.hero-img-wrap {
    position: relative;
    text-align: right;
}

.hero-img {
    max-height: 480px;
    width: 100%;
    object-fit: contain;
}



/* ================================================
   STATS SECTION (Floating Dark Card)
================================================ */
.stats-section {
    padding-bottom: 80px;
    top: -30px;
    position: relative;
    margin-top: 30px;
}

.stats-box {
    background: rgba(22, 22, 22, 1);
    border-radius: 10px;
    padding: 44px 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-num {
    font-family: var(--font-dm);
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 400;
    color: rgba(203, 213, 225, 1);
    margin-top: 2px;
}

/* ================================================
   SECTION COMMON
================================================ */
.section-head {
    margin-bottom: 52px;
}

.section-title {
    font-family: var(--font-dm);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-sub {
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 662px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   SERVICES SECTION
================================================ */
.services-section {
    padding: 0px 0 90px;
    background: rgba(245, 251, 255, 1);
}

.service-card {
    background: var(--white);
    border: 1.5px solid rgba(18, 20, 29, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-5px);
}


.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 12px;
    transition: background var(--transition);
}

.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}



.service-name {
    font-family: var(--font-dm);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-desc {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 0px;
}

.service_top_icon {
    position: absolute;
    top: -80px;
    left: -30px;
    width: 80px;
    height: 80px;
    object-fit: contain;

}

.service_bottom_icon {
    position: absolute;
    bottom: -40px;
    right: 0px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-link {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ================================================
   3 STEPS SECTION (Matching design image)
================================================ */
.steps-section {
    padding: 90px 0;
    background: url(../img/get_a_capn_bg.png);
    position: relative;
    background-position: center;
    background-size: cover;
}

.step-num-title {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    color: #18191c;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.step-card {
    margin-bottom: 24px;
}

.step-img {
    width: calc(100% - 50px);
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.step-title {
    font-family: var(--font-dm);
    font-size: 18px;
    font-weight: 600;
    color: #18191c;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.step-desc {
    font-family: var(--font-inter);
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 310px;
    margin: 0 auto;
}

/* ================================================
   WHY CHOOSE SECTION
================================================ */
.why-section {
    padding: 90px 0;
    background: rgba(245, 251, 255, 1);
}

.why-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.why-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-content .section-title {
    margin-bottom: 14px;
}

/* Staggered cards matching design image */
.why-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    padding-top: 10px;
}

.why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0px 35px 116px -10px rgba(154, 167, 193, 0.25);

    border: 1px solid #f0f3fa;
    transition: transform var(--transition), box-shadow var(--transition);
    max-width: 480px;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(51, 82, 204, 0.12);
    border-color: var(--primary-light);
}

.why-card-offset {
    margin-left: 45px;
}

.why-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.why-card-text h4 {
    font-family: var(--font-dm);
    font-size: 20px;
    font-weight: 600;
    color: #18191c;
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.why-card-text p {
    font-family: var(--font-inter);
    font-size: 12px;
    color: rgba(43, 43, 43, 1);
    margin: 0;
    line-height: 1.5;
}

/* ================================================
   FAQ SECTION (Matching design image)
================================================ */
.faq-section {
    padding: 90px 0;
    background: rgba(22, 22, 22, 1);
}

.faq-section .section-title {
    color: #ffffff;
    font-family: var(--font-dm);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-section .section-sub {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-inter);
    font-size: 14px;
    max-width: 600px;
    opacity: 0.8;
    font-weight: 300;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-wrap {
    max-width: 760px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 22px 28px;
    font-family: var(--font-dm);
    font-size: 16px;
    font-weight: 600;
    color: #18191c;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    outline: none;
}

.faq-question span:first-child {
    font-family: var(--font-dm);
    font-size: 16px;
    font-weight: 600;
    color: #18191c;
}

.faq-toggle-icon {
    flex-shrink: 0;
    font-size: 18px;
    color: #18191c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform var(--transition);
}

.faq-answer-inner {
    padding: 0 28px 24px;
}

.faq-answer-inner p {
    font-family: var(--font-inter);
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

/* ================================================
   TESTIMONIALS SECTION (Matching design image)
================================================ */
.testimonials-section {
    padding: 85px 0 75px;
    background: var(--white);
}

.testimonials-owl .owl-item {
    display: flex;
}

.testi-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
    margin: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testi-stars i {
    font-size: 14px;
    color: #f59e0b;
}

.testi-text {
    font-family: var(--font-inter);
    font-size: 13.5px;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 24px;
}

.testi-author-simple {
    display: flex;
    flex-direction: column;
}

.testi-author-simple strong {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 700;
    color: #18191c;
    margin-bottom: 2px;
}

.testi-author-simple span {
    font-family: var(--font-inter);
    font-size: 12px;
    color: #9ca3af;
}

/* Dots matching design image (4 circular dots) */
.testimonials-owl .owl-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.testimonials-owl .owl-dot {
    outline: none;
}

.testimonials-owl .owl-dot span {
    width: 10px !important;
    display: inline-block;
    height: 10px !important;
    background: #d1d5db !important;
    border-radius: 50% !important;
    margin: 0 !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.testimonials-owl .owl-dot.active span {
    background: #18191c !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    transform: scale(1.15);
}

/* ================================================
   NEWSLETTER / CTA BANNER (newsletter.png background)
================================================ */
.newsletter-section {
    padding: 30px 0 80px;
    background: var(--white);
}

.newsletter-card-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.newsletter-box {
    background-image: url('../img/newsletter.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #14171f;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.newsletter-box h2 {
    font-family: var(--font-dm);
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.45;
    margin-bottom: 30px;
    max-width: 680px;
    letter-spacing: -0.3px;
}

.btn-newsletter-action {
    font-family: var(--font-inter);
    font-size: 13.5px;
    font-weight: 600;
    color: #18191c;
    background: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-newsletter-action:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 82, 204, 0.4);
}

/* ================================================
   FOOTER (100% Exact match to design image)
================================================ */
.capn-footer {
    background-image: url(../img/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 65px;
    padding-bottom: 0;
    color: #1f2937;
    position: relative;
    border-top: 1px solid #f1f5f9;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-logo-title {
    font-family: var(--font-dm);
    font-size: 26px;
    font-weight: 700;
    color: #14171f;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    display: inline-block;
    text-transform: uppercase;
    line-height: 1;
}

.footer-logo-title img {
    height: 20px;
}

.footer-brand p {
    font-family: var(--font-inter);
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 290px;
}

.footer-col-title {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: #14171f;
    margin-bottom: 20px;
}

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

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

.footer-links li a {
    font-family: var(--font-inter);
    font-size: 13px;
    color: #6b7280;
    transition: color var(--transition);
}

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

.footer-contact-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-simple li {
    font-family: var(--font-inter);
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact-simple li a {
    color: #6b7280;
    transition: color var(--transition);
}

.footer-contact-simple li a:hover {
    color: var(--primary);
}

/* Subscribe Box with Button Inside */
.subscribe-input-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 320px;
}

.subscribe-input {
    width: 100%;
    height: 48px;
    padding: 0 110px 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    font-family: var(--font-inter);
    font-size: 13px;
    color: #1f2937;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.subscribe-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(51, 82, 204, 0.12);
}

.btn-subscribe {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: #14171f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-subscribe:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom {
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: var(--font-inter);
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

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

.footer-socials a {
    color: #14171f;
    font-size: 14px;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    transition: color var(--transition), transform var(--transition);
}

.footer-socials a:hover {
    color: var(--primary);
    background: transparent;
    transform: translateY(-2px);
}

/* ================================================
   SMALL BUSINESS PAGE
================================================ */

/* ── Hero Banner ── */
.sb-hero {
    background: url(../img/inner_bg_12.png);
    padding: 75px 0 75px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.sb-hero h1 {
    font-family: var(--font-dm);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.sb-hero .sb-breadcrumb {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.50);
}

.sb-hero .sb-breadcrumb a {
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    transition: color 0.2s;
}

.sb-hero .sb-breadcrumb a:hover {
    color: #f59e0b;
}

.sb-hero .sb-breadcrumb span {
    color: #f59e0b;
}

/* ── Content Section ── */
.sb-content-section {
    padding: 80px 0 90px;
    background: #ffffff;
}

/* Left image */
.sb-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



.sb-img-wrap img.sb-main-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: 400px;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.08));
}

/* Right text */
.sb-text-wrap .sb-page-title {
    font-family: var(--font-dm);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #18191c;
    margin-bottom: 20px;
    line-height: 1.25;
}

.sb-block-title {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    color: #18191c;
    margin-bottom: 8px;
    margin-top: 22px;
}

.sb-para {
    font-family: var(--font-inter);
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 12px;
}

/* Bullet list */
.sb-bullet-list {
    list-style: disc;
    padding-left: 20px;
    margin: 8px 0 20px;
}

.sb-bullet-list li {
    font-family: var(--font-inter);
    font-size: 13.5px;
    color: #374151;
    padding: 3px 0;
    line-height: 1.65;
}

/* CTA button */
.btn-sb-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #18191c;
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    border: none;
    margin-top: 8px;
}

.btn-sb-cta:hover {
    background: #f59e0b;
    color: #18191c;
    transform: translateY(-2px);
}

/* ================================================
   CONTACT US PAGE
================================================ */
.contact-section {
    padding: 80px 0 90px;
    background: #ffffff;
}

.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form-title {
    font-family: var(--font-dm);
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 700;
    color: #18191c;
    margin-bottom: 12px;
}

.contact-form-sub {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 36px;
}

.contact-form .form-control,
.contact-form .form-select {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #18191c;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 13px 16px;
    background-color: #ffffff;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-control::placeholder {
    color: #9ca3af;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #18191c;
    box-shadow: 0 0 0 3px rgba(24, 25, 28, 0.08);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-contact-submit {
    background: #18191c;
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 48px;
    border-radius: 8px;
    border: none;
    transition: background 0.25s, transform 0.2s;
}

.btn-contact-submit:hover {
    background: #f59e0b;
    color: #18191c;
    transform: translateY(-2px);
}

/* ── Contact Info & Map Section ── */
.contact-info-section {
    padding: 85px 0;
    background: rgba(245, 251, 255, 1);
}

.contact-map-wrap {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.contact-info-wrap .contact-info-title {
    font-family: var(--font-dm);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #18191c;
    line-height: 1.3;
    margin-bottom: 16px;
}

.contact-info-wrap p {
    font-family: var(--font-inter);
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-item-list {
    margin-top: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-item-icon {
    font-size: 16px;
    color: #18191c;
    margin-top: -2px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item-content h6 {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 700;
    color: #18191c;
    margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
    font-family: var(--font-inter);
    font-size: 13.5px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-content a:hover {
    color: #f59e0b;
}