/* Primary Colors */
:root {
    --color-navy-blue: #203969;
    --color-silver: #C7C7C7;
}

/* Example usage:
   color: var(--color-navy-blue);
   background-color: var(--color-silver);
*/

.contact-section {
    padding: 80px 0;
    background: #f4f6fa;
}

.contact-header {
    margin-bottom: 48px;
}

.contact-label {
    display: inline-block;
    background: #203969;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.contact-title {
    font-size: 38px;
    font-weight: 700;
    color: #203969;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 15px;
    color: #6b7a99;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-body {
    max-width: 1060px;
}

.contact-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(32, 57, 105, 0.13);
}

/* Info Panel */
.contact-info-panel {
    background: #203969;
    color: #fff;
    display: flex;
    align-items: stretch;
}

.contact-info-inner {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.contact-info-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contact-divider {
    width: 40px;
    height: 3px;
    background: #C7C7C7;
    border-radius: 2px;
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(199, 199, 199, 0.15);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #C7C7C7;
    transition: background 0.3s;
}

.contact-info-icon--whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C7C7C7;
}

.contact-info-value {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

a.contact-info-value:hover {
    color: #C7C7C7;
}

/* Map Panel */
.contact-map-panel {
    position: relative;
    min-height: 420px;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.contact-map-placeholder {
    height: 100%;
    min-height: 420px;
    background: #e8edf4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9aaccc;
    gap: 12px;
    font-size: 14px;
}

.contact-map-placeholder i {
    font-size: 48px;
}

.site-footer {
    background: #203969;
    color: #C7C7C7;
    margin-top: 0;
}

.footer-wave {
    line-height: 0;
    background: #203969;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-main {
    padding: 52px 0 32px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    max-height: 64px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-tagline {
    font-size: 14px;
    color: #C7C7C7;
    max-width: 420px;
    line-height: 1.7;
    margin: 0;
}

.footer-divider {
    width: 48px;
    height: 2px;
    background: rgba(199, 199, 199, 0.3);
    border-radius: 2px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(199, 199, 199, 0.25);
    color: #C7C7C7;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(199, 199, 199, 0.1);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(199, 199, 199, 0.65);
}

.footer-copy-link {
    color: #C7C7C7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-copy-link:hover {
    color: #fff;
    text-decoration: none;
}

/** Blog Page */

.blog-page-hero {
    background: linear-gradient(135deg, #C7C7C7 0%, #C7C7C7 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: #f8f9fa;
    /* clip-path: ellipse(55% 100% at 50% 100%); */
}

.blog-page-hero h1 {
    color: #203969;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    padding-left: 60px;
}

.blog-page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 10px 0 0;
    justify-content: center;
}

.blog-page-hero .breadcrumb-item a {
    color: #203969;
    text-decoration: none;
}

.blog-page-hero .breadcrumb-item.active,
.blog-page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: #C7C7C7;
}

.blog-listing-section {
    padding: 70px 0 80px;
    background: #f8f9fa;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(32, 57, 105, 0.14);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.blog-card-img img.img-fallback {
    object-fit: contain;
    padding: 24px;
    background: #f0f3f8;
}

.blog-card:hover .blog-card-img img:not(.img-fallback) {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #203969;
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #2d4f8a;
}

.blog-card-excerpt {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 18px;
}

.blog-card-footer {
    margin-top: auto;
}

.btn-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #203969;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 9px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-blog-read:hover {
    background: #2d4f8a;
    color: #fff;
    text-decoration: none;
}

.blog-pagination .page-item .page-link {
    color: #203969;
    border-color: #dce4ef;
}

.blog-pagination .page-item.active .page-link {
    background-color: #203969;
    border-color: #203969;
    color: #fff;
}

.blog-pagination .page-item .page-link:hover {
    background-color: #eef2f9;
}

.blog-empty {
    text-align: center;
    padding: 60px 0;
    color: #888;
}

.blog-empty i {
    font-size: 3rem;
    color: #C7C7C7;
    display: block;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .footer-main {
        padding: 36px 0 24px;
    }

    .footer-logo {
        max-height: 48px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-info-inner {
        padding: 36px 24px;
    }

    .contact-map-panel {
        min-height: 300px;
    }

    .contact-map {
        min-height: 300px;
    }
}