:root {
    --footer-bg: #f8fafc; /* Slate 50/White-ish */
    --footer-bg-dark: #ebefed; /* Original light gray for bottom bar */
    --text-main: #334155; /* Slate 700 */
    --text-heading: #07302b; /* Brand Dark Green */
    --accent-color: #0d9488; /* Teal 600 - Complementary to dark green */
    --accent-hover: #0f766e; /* Teal 700 */
    --border-color: #e2e8f0; /* Slate 200 */
}

body {
    font-family: 'Poppins' !important;
}

.footer-section {
    background-color: var(--footer-bg);
    color: var(--text-main);
    padding: 100px 0 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Wave Divider */
.custom-shape-divider-top-1689347892 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1689347892 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1689347892 .shape-fill {
    fill: #f8f9fa; /* Matches the body background */
}

/* Subtle pattern overlay */
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#07302b 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.03;
    pointer-events: none;
}

.footer-heading {
    color: var(--text-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--text-heading), transparent);
    border-radius: 2px;
}

.p-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.highlight-text {
    color: var(--text-heading);
    font-weight: 700;
}

.accent-icon {
    color: var(--text-heading);
}

/* Contact Card Styling */
/* .contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
} */

.icon-box {
    width: 36px;
    height: 36px;
    background-color: rgba(13, 148, 136, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f4c52;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 10px;
}

.text-xs {
    font-size: 0.75rem;
}

.contact-link, .contact-text {
    color: var(--text-heading);
    font-weight: 600;
    text-decoration: none;
     font-size: 0.75rem !important; 
    /* line-height: 1.4; */
    /* display: block; */
}

.contact-link:hover {
    color: #9e27a9;
}

/* Unified Trust Badges */
.trust-badges .badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.d-flex {
    display: flex;
}
.gap-3 {
    gap: 15px;
}
.align-items-center {
    align-items: center;
}

.badge-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    /* height: 48px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-heading);
}

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}

.badge-item img {
    /* max-height: 24px; */
    width: auto;
    object-fit: contain;
}

.bark-item .bark-logo {
    max-height: 14px;
    width: auto;
}

/* Links */
.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '\f054'; /* Chevron right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 0px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--text-heading);
}

.footer-links a:hover {
    color: var(--text-heading);
    font-weight: 600;
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
    margin-right: 8px;
}

/* Social Icons */
.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #2f4c52;
    transition: all 0.3s ease;
    border: 1px solid #2f4c52;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.social-links li a:hover {
    background-color: #2f4c52;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(7, 48, 43, 0.2);
}

/* Reviews */
.review-badge img, .bark-logo {
    transition: transform 0.3s;
}

.review-badge:hover img, .bark-logo:hover {
    transform: scale(1.05);
}

.bark-rating {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-main);
}

.rating-score {
    color: var(--text-heading);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--footer-bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    margin-top: 60px;
    font-size: 0.9rem;
}

.footer-bottom span {
    display: inline-block !important;
}

.footer-bottom p {
    color: var(--text-main);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-section {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .reviews-container .d-flex {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a::before {
        display: none; /* Hide arrow on mobile as hover isn't primary */
    }
}
.text-center {
    text-align: center;
}