/* ==================== 
   01. VARIABLES
   ==================== */
:root {
    --dark: #3f3e40;
    --accent: #617f65;
    --trust: #437b13;
    --white: #ffffff;
    --light-bg: #f7f8f6;
    --light-green: #eaf3eb;
    --text-muted: #666;
    --text-light: #999;
    --border-color: #eee;
    --border-form: #dfe7e7;
    --section-padding: 80px;
    --card-radius: 24px;
    --transition-base: 0.3s ease;
}

/* ==================== 
   02. RESET & BASE
   ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

section {
    padding: var(--section-padding) 0;
    overflow-x: hidden !important;
}

/* ==================== 
   03. NAVBAR
   ==================== */
.navbar {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    /* max-height: 60px; */
    width: 90px;
    transition: var(--transition-base);
}

.navbar-nav {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .navbar-nav {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 30px;
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link.active {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.navbar .btn {
    background: var(--dark);
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    transition: var(--transition-base);
}

.navbar .btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==================== 
   04. HERO
   ==================== */
.hero {
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #242425 0%, var(--accent) 40%, rgb(232, 230, 230) 100%);
    border-radius: 32px;
    margin: 0 40px 40px;
    overflow: hidden;
}

.hero-content {
    padding: 90px 0;
    color: var(--white);
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 20px 0;
}

.hero h2 {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    font-style: italic;
}

.hero p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    font-style: italic;
}

.hero .btn-success {
    background: var(--accent);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-base);
}

.hero .btn-success:hover {
    background: var(--trust);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.hero-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width var(--transition-base);
}

.hero-link:hover::after {
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    transform: translateX(40px);
}

/* ==================== 
   05. SECTION TITLES
   ==================== */
.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.section-tag {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ==================== 
   06. COVERAGE / ABOUT SECTION
   ==================== */
/* overflow:visible allows sticky sidebar & absolute children to show */
.coverage-section {
    padding: var(--section-padding) 0;
    overflow: visible;
}

.coverage-text {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(63, 62, 64, 0.8);
}

/* ==================== 
   07. BUTTONS
   ==================== */
.coverage-btn,
.coverage-btn-outline {
    display: inline-block;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-right: 12px;
    margin-top: 8px;
}

.coverage-btn {
    background: var(--accent);
    color: var(--white);
}

.coverage-btn:hover {
    background: var(--white);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.coverage-btn-outline {
    background: var(--white);
    color: var(--accent);
}

.coverage-btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ==================== 
   08. STATS CARDS
   ==================== */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stats-card {
    background: linear-gradient(135deg, var(--white), #f1f5f9);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(67, 123, 19, 0.15), transparent 70%);
    transform: rotate(25deg);
    z-index: 0;
    pointer-events: none;
}

.stats-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #f9fffb, #e6fff5);
}

.stats-card-icon {
    width: 75px;
    height: 75px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.stats-card-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.stats-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--trust);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stats-card p {
    font-size: 15px;
    color: rgba(63, 62, 64, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==================== 
   09. EXPERTISE CARDS
   ==================== */
.expertise-section {
    background: var(--white);
}

.expertise-card {
    border-radius: 22px;
    padding: 28px;
    height: 100%;
    background: var(--light-bg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.expertise-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    padding: 15px;
    flex-shrink: 0;
}

.expertise-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.expertise-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== 
   10. INSURANCE SERVICES
   ==================== */
.insurance-section {
    background: var(--white);
}

.insurance-card {
    border-radius: 28px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-base);
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.light-card {
    background: var(--light-bg);
}

.dark-card {
    background: linear-gradient(180deg, #0d2b3a, #071c26);
    border-radius: 32px;
}

.smart-badge {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.85rem;
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 500;
}

.card-image {
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.center-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
}

.center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insurance-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.insurance-card .text-muted-foreground {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ==================== 
   11. WHY CHOOSE US / ACCORDION
   ==================== */
.why-choose-us {
    background-color: var(--white);
}

.why-choose-us .image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 5px;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark);
    padding: 15px 30px 15px 15px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--accent);
    background: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 10px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== 
   12. PARTNERS / SWIPER
   ==================== */
.investor-section {
    background: var(--white);
}

.investor-logo {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: pointer;
}

.investor-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== 
   13. TESTIMONIALS
   ==================== */
.testimonial-section {
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-section .section-tag {
    color: var(--trust);
    letter-spacing: 2px;
}

.testimonial-section .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--trust);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    min-height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonial-card h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.testimonial-card span {
    font-size: 14px;
    color: var(--text-muted);
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffc107;
    font-size: 14px;
}

.client-img {
    position: absolute;
    bottom: 10px;
    right: 40px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    overflow: hidden;
}

.client-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 85%;
}

.custom-nav {
    color: var(--accent);
    border: 1px solid var(--accent);
    position: static;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.custom-nav:hover {
    background: var(--accent);
    color: var(--white);
}

.custom-nav::after {
    font-size: 18px;
}

.testimonialSwiper .swiper-slide {
    padding-bottom: 60px;
}

/* ==================== 
   14. INSURANCE HELP BANNER
   ==================== */
.insurance-help-section {
    position: relative;
    background: var(--accent);
    padding: 50px 0;
    overflow: visible;
}

.insurance-help-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    pointer-events: none;
}

.insurance-help-section::after {
    content: "";
    position: absolute;
    top: -2px;
    right: 0;
    width: 220px;
    height: 100%;
    background: var(--white);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.insurance-help-section h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.insurance-help-section p {
    font-size: 18px;
}

.insurance-help-section .phone {
    color: var(--dark);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
}

.agent-img {
    max-height: 280px;
    position: absolute;
    right: 200px;
    top: -70px;
    z-index: 9999;
}

/* ==================== 
   15. QUOTE WIZARD
   ==================== */
.quote-wizard {
    background: #f7f8fa;
    position: relative;
}

.wizard-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.progress {
    height: 6px;
    border-radius: 50px;
}

.progress-bar {
    width: 33%;
    background: var(--accent);
    transition: width 0.3s ease;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.option-card {
    border: 1px solid #e5e7eb;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.option-card:hover {
    border-color: var(--accent);
    background: #f0f7f3;
}

.option-card small {
    display: block;
    color: #6b7280;
}

.wizard-man {
    max-width: 420px;
    position: absolute;
    left: 4%;
    bottom: 0;
}


/* ==================== 
   17. ABOUT HERO & INNER PAGES
   ==================== */
.about-hero {
    position: relative;
    min-height: 380px;
    background:
        linear-gradient(90deg, #242425 0%, rgba(97, 127, 101, 0.9) 40%, rgba(232, 230, 230, 0) 100%),
        url("/assets/images/1.png") center right / cover no-repeat;
    display: flex;
    align-items: center;
}

.about-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.breadcrumb-custom {
    margin-top: 20px;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--white);
}

.breadcrumb-custom span {
    margin: 0 10px;
}

/* ==================== 
   18. ABOUT SECTION / VALUES
   ==================== */
.about-section {
    background: var(--white);
}

.brand-name {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--accent);
}

.brand-name span {
    color: #6bcf8e;
}

.about-heading {
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-text {
    color: #6c7a89;
    line-height: 1.8;
}

.values-intro {
    color: #6c7a89;
    margin-top: 15px;
    line-height: 1.6;
}

.info-box {
    border: 1px solid var(--border-color);
    background: var(--white);
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-base);
}

.info-item:hover {
    background: #f9fdfb;
}

.info-item h6 {
    margin: 0;
    font-weight: 600;
    color: var(--accent);
}

.info-item p {
    margin: 0;
    color: #6c7a89;
    font-size: 14px;
}

/* ==================== 
   19. FEATURE CARDS
   ==================== */
.feature-card {
    position: relative;
    padding: 30px;
    height: 100%;
}

.feature-card::before,
.feature-card::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1.5px solid #1f3b3a;
}

.feature-card::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

.feature-card::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* ==================== 
   20. WHO-NEEDS CARDS
   ==================== */
.term-need-section {
    padding: 80px 0;
}

.section-heading {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.term-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.term-card-img {
    position: relative;
}

.term-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.term-card-icon {
    position: absolute;
    bottom: -25px;
    right: 15px;
    background: var(--accent);
    width: 80px;
    height: 80px;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.term-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.term-card-body {
    padding: 40px 30px 30px;
    position: relative;
    background: var(--white);
}

.term-card-body>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: -73%;
    left: 0;
}

.term-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.term-card-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* ==================== 
   21. MYTH CARDS
   ==================== */
.myth-card {
    background: #f9fafb;
    border-left: 4px solid var(--accent);
}

.myth-reality {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

/* ==================== 
   22. HEALTH SERVICES CARDS
   ==================== */
.services-contant {
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    padding: 60px 25px 35px;
    position: relative;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.services-card {
    padding: 0 10px;
    position: relative;
    transition: var(--transition-base);
}

.services-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    right: -5px;
    bottom: -15px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.045);
    z-index: 1;
    border-radius: 0 0 16px 16px;
}

.services-card:hover {
    transform: translateY(-20px);
}

.services-card:hover::after {
    background-color: var(--accent);
}

.services-card:hover .service-icon {
    border-color: var(--accent);
}

.service-icon {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 40px;
    border: 12px solid #fafafa;
}

/* ==================== 
   23. IMAGE WRAPPER
   ==================== */
.image-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

/* ==================== 
   24. CONTACT FORM
   ==================== */
.contact-form-wrapper {
    border-radius: 20px;
    border: 1px solid #eef2f2;
}

.contact-form-wrapper .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid var(--border-form);
    font-size: 15px;
    padding: 12px 16px;
    transition: var(--transition-base);
}

.contact-form-wrapper textarea.form-control {
    height: auto;
}

.contact-form-wrapper .form-control:focus {
    border-color: #0b7a6e;
    box-shadow: 0 0 0 3px rgba(11, 122, 110, 0.15);
}

/* ==================== 
   25. BLOG — FILTERS & CARDS
   ==================== */

/* Filter Tabs */
.blog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1px solid var(--border-form);
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Category badge — shared by listing cards, detail page, related cards */
.blog-cat-badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

/* Featured Card */
.blog-featured-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    transition: var(--transition-base);
}

.blog-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-featured-img {
    position: relative;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-img img {
    transform: scale(1.05);
}

.blog-featured-body {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-featured-excerpt {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Read More Button */
.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--accent);
    transition: var(--transition-base);
    width: fit-content;
}

.blog-read-btn:hover {
    background: var(--white);
    color: var(--accent);
}

.blog-read-btn svg {
    transition: transform var(--transition-base);
}

.blog-read-btn:hover svg {
    transform: translateX(4px);
}

/* Regular Blog Cards */
.blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
    overflow: hidden;
    height: 220px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eef2f2;
    padding-top: 16px;
    margin-top: auto;
}

.blog-card-date {
    font-size: 12px;
    color: #aaa;
}

.blog-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--transition-base), color var(--transition-base);
}

.blog-card-link:hover {
    gap: 10px;
    color: var(--trust);
}

/* Pagination */
.blog-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 50px;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border-form);
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover,
.page-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ==================== 
   26. BLOG — SIDEBAR
   ==================== */
.blog-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.blog-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-widget-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-green);
}

.popular-post {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post img {
    width: 72px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.popular-post-info h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.popular-post-info span {
    font-size: 12px;
    color: #aaa;
}

.popular-post:hover h6 {
    color: var(--accent);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #555;
    transition: color var(--transition-base);
}

.category-list a:hover {
    color: var(--accent);
}

.category-count {
    background: var(--light-green);
    color: var(--accent);
    font-size: 12px;
    padding: 2px 9px;
    border-radius: 20px;
    font-weight: 600;
}

/* TOC List (detail sidebar) */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}

.toc-list li {
    counter-increment: toc;
    padding: 9px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list a {
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: color var(--transition-base);
}

.toc-list a::before {
    content: counter(toc);
    background: var(--light-green);
    color: var(--accent);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.toc-list a:hover {
    color: var(--accent);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--dark), var(--text-muted)) !important;
    text-align: center;
    color: var(--white);
}

.cta-widget .sidebar-widget-title {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-widget .coverage-btn {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    width: 100%;
    justify-content: center;
    display: inline-flex;
}

.cta-widget .coverage-btn:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* ==================== 
   27. BLOG — DETAIL ARTICLE
   ==================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 36px;
    transition: gap var(--transition-base), color var(--transition-base);
}

.back-link:hover {
    gap: 12px;
    color: var(--trust);
}

.article-header {
    margin-bottom: 36px;
}

.article-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
    padding-bottom: 24px;
    border-bottom: 1px solid #eef2f2;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.article-hero-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.article-hero-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* Article body typography */
.article-body {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(63, 62, 64, 0.85);
}

.article-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 16px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 14px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    background: #f0f7f3;
    border-left: 4px solid var(--accent);
    border-radius: 0 14px 14px 0;
    padding: 24px 28px;
    margin: 30px 0;
    font-size: 17px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
}

.article-body blockquote cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    color: var(--text-light);
    margin-top: 10px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--light-green), #f7fdf8);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0;
    border: 1px solid #c8e6cb;
}

.highlight-box h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--trust);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box ul {
    margin: 0;
    padding-left: 20px;
}

.highlight-box ul li {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 8px;
}

/* Data Table */
.article-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    margin: 28px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    font-size: 14px;
}

.article-table thead {
    background: var(--accent);
    color: var(--white);
}

.article-table thead th {
    padding: 14px 18px;
    font-weight: 600;
    text-align: left;
}

.article-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background var(--transition-base);
}

.article-table tbody tr:hover {
    background: #f7fdf8;
}

.article-table tbody td {
    padding: 13px 18px;
    color: #555;
}

/* Tags & Share */
.article-footer {
    border-top: 1px solid #eef2f2;
    padding-top: 28px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tags a {
    background: var(--light-bg);
    color: #555;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.article-tags a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-form);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: var(--transition-base);
}

.share-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Author Box */
.author-box {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 48px 0;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}

.author-box-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-box-info .author-role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.author-box-info p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* Related Posts */
.related-section {
    margin-top: 20px;
}

.related-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-green);
}

.related-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
    height: 100%;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-card-body {
    padding: 20px;
}

/* Smaller badge variant for related cards */
.related-card-body .blog-cat-badge {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.related-card-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 14px;
}

.related-card-body a {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.related-card-body a:hover {
    color: var(--trust);
}

/* ==================== 
   28. BLOG — READING PROGRESS BAR
   ==================== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--trust));
    z-index: 9999;
    transition: width 0.1s linear;
    width: 0%;
}

/* ==================== 
   29. UTILITIES & FOCUS
   ==================== */
.text-muted-foreground {
    color: var(--text-muted);
}

a:focus,
button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ==================== 
   30. RESPONSIVE
   ==================== */

/* Large Tablets */
@media (max-width: 1199px) {
    .agent-img {
        right: 120px;
    }
}

/* Medium Tablets */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        height: auto;
        min-height: auto;
        margin: 0 20px 30px;
        border-radius: 20px;
    }

    .hero-content {
        padding: 60px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero p {
        max-width: 100%;
        font-size: 15px;
        margin: 0 auto;
    }

    .hero .d-flex {
        justify-content: center;
    }

    .hero-image img {
        transform: none;
    }

    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-card {
        padding: 25px;
    }

    .stats-card h3 {
        font-size: 28px;
    }

 .navbar-nav {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(0px);
        border-radius: 0px;
        margin-top: 15px;
        border: 0px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: none;
    }
    
    .navbar-nav .nav-link.active {
    background: transparent;
    color: black;
box-shadow: none;
        border: 2px solid var(--accent);
            
}


.navbar-nav .nav-link {
    border-radius:0;
}

.navbar .btn {
    display:none;
}

    .navbar-nav .nav-link {
        padding: 10px 20px;
        text-align: center;
    }

    .center-image {
        min-height: 300px;
    }

    .insurance-help-section {
        text-align: center;
    }

    .insurance-help-section::after {
        display: none;
    }

    .agent-img {
        position: static;
        display: block;
        max-height: 220px;
        margin: 30px auto 0;
    }

    .testimonial-nav {
        margin-left: 0;
        justify-content: center;
    }

    .wizard-man {
        display: none !important;
    }

    .info-item {
        flex-wrap: wrap;
    }

    .coverage-btn,
    .coverage-btn-outline {
        display: block;
        text-align: center;
        width: 100%;
        margin-right: 0;
    }

    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

/* Small Tablets / Large Phones */
@media (max-width: 767px) {
    .hero {
        background-image: linear-gradient(180deg, rgba(36, 36, 37, 0.85) 0%, rgba(97, 127, 101, 0.85) 100%);
        background-size: cover;
        background-position: center;
        margin: 0 10px 20px;
    }

    .hero-content {
        padding: 50px 0;
    }

    .stats-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .testimonial-nav {
        margin-left: 0;
        justify-content: center;
    }


    .wizard-card {
        padding: 25px 20px;
    }

    .coverage-btn,
    .coverage-btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }

    .term-card-img img,
    .card-image img {
        height: 200px;
    }

    .center-image {
        min-height: 250px;
    }

    .services-card {
        margin-bottom: 60px;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-img {
        height: 260px;
    }

    .blog-featured-body {
        padding: 30px 24px;
    }

    .blog-featured-title {
        font-size: 22px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-hero-img img {
        height: 280px;
    }

    .author-box {
        flex-direction: column;
        gap: 16px;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    :root {
        --section-padding: 50px;
    }

    .hero {
        background-image:
            linear-gradient(90deg, rgba(97, 127, 101, 0.9), rgba(97, 127, 101, 0.9)),
            url('../images/4.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0 10px 20px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 16px;
    }

    .hero p {
        font-size: 14px;
    }

    .stats-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stats-card-icon {
        width: 60px;
        height: 60px;
    }

    .stats-card-icon img {
        width: 35px;
        height: 35px;
    }

    .expertise-card {
        padding: 20px;
    }

    .expertise-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        padding: 12px;
    }

    .testimonial-card {
        padding: 30px 20px;
        min-height: 250px;
    }

    .client-img {
        bottom: 0px;
        right: 20px;
    }

    .client-img img {
        width: 50px;
        height: 50px;
    }

    .insurance-card {
        padding: 20px;
    }

    .smart-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }

    .about-hero {
        min-height: 280px;
        background-position: center;
    }

    .info-item {
        padding: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .term-card-body {
        padding: 40px 20px 20px;
    }

    .section-heading {
        font-size: 26px;
    }

    .services-section {
        padding-top: 80px;
    }

    .myth-card {
        padding: 15px !important;
    }
}

/* Extra Small */
@media (max-width: 375px) {
    .navbar-brand img {
        max-height: 60px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .stats-card {
        padding: 20px;
    }

    .stats-card h3 {
        font-size: 24px;
    }
}

/* ==========================================
   FOOTER — REDESIGNED
   ========================================== */

.site-footer {
    background: linear-gradient(rgba(255, 255, 255, 0.511),
            rgba(220, 220, 220, 0.658)),
        url('/assets/images/footer-1.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    color: var(--dark);
    font-size: 15px;
    position: relative;
    overflow: hidden;
}





/* Logo wrapper */
.footer-logo-wrap {
    width: 120px;
}


.footer-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer body text */
.footer-text {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 14px;
    max-width: 320px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f7f8f6;
    border: 1px solid #e8ede9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* Section titles */
.footer-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title span {
    position: relative;
}

.footer-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Nav links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: "›";
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    margin-right: 0;
    width: 0;
    overflow: hidden;
}

.footer-links a:hover {
    color: var(--dark);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
    width: 14px;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(97, 127, 101, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: -2px;
}

.footer-contact-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover {
    color: var(--dark);
}

/* CTA Button */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.footer-cta-btn svg {
    transition: transform 0.3s;
}

.footer-cta-btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid #eef2f2;
    margin: 0 0 28px;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 32px;
    color: #aaa;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-policy {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-policy a {
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policy a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-text {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy {
        justify-content: center;
    }
}