/* =============================================
   Hayat Healthcare - Main Stylesheet
   ============================================= */

/* --- Variables --- */
:root {
    --primary: #fd3036;
    --primary-dark: #B01E1E;
    --secondary: #1B8A4A;
    --secondary-dark: #14693A;
    --dark: #1A1A2E;
    --text: #4A4A5A;
    --text-light: #7A7A8A;
    --light: #F7F8FB;
    --white: #FFFFFF;
    --border: #EAEAF0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.08);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', 'Noto Sans Bengali', sans-serif;
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

body.bn {
    font-family: 'Noto Sans Bengali', 'Inter', sans-serif;
}

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

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

/* --- Navbar --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
}

.logo {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

/* --- Google Translate Widget --- */
#google_translate_element {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.navbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 16px;
    padding-right: 16px;
    border-right: 1.5px solid var(--border);
}

.navbar-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.navbar-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.lang-select-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lang-select-wrap:hover {
    border-color: var(--primary);
}

.lang-select-wrap i {
    font-size: 14px;
    color: var(--primary);
}

.lang-select {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', 'Noto Sans Bengali', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237A7A8A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.lang-select-mobile {
    font-size: 12px;
    padding-right: 12px;
}

.gtranslate-offcanvas .lang-select-wrap {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
}

.gtranslate-offcanvas .lang-select {
    font-size: 14px;
}

.goog-te-banner-frame,
.skiptranslate > iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* --- Mobile Offcanvas --- */
#mobileMenu {
    width: 300px;
}

#mobileMenu .offcanvas-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}
.offcanvas-header img{
    height: 50px;
}
.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.offcanvas-nav a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

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

.offcanvas-contact {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--light);
}

.offcanvas-contact h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.offcanvas-contact a,
.offcanvas-contact p {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 8px;
    text-decoration: none;
}

.offcanvas-contact a:hover {
    color: var(--primary);
}

.offcanvas-contact i {
    color: var(--primary);
    margin-right: 6px;
    font-size: 13px;
}

.offcanvas-social {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.offcanvas-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 0;
    transition: var(--transition);
}

.offcanvas-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- Buttons --- */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 42, 42, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(180deg, #EEF5FA 0%, var(--white) 100%);
}

.hero-row {
    padding-top: 130px;
    padding-bottom: 60px;
}

.hero-badge {
    background: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow);
}

.hero-badge i {
    color: #F5A623;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
    /* max-width: 480px; */
    line-height: 1.8;
}

/* Hero Slider */
.hero-slide-img {
    height: 480px;
    object-fit: cover;
}

.carousel-caption-custom {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    backdrop-filter: blur(4px);
}

.hero-indicators {
    margin-bottom: 12px;
}

.hero-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-indicators button.active {
    opacity: 1;
    background-color: var(--white);
}

.carousel-control-prev,
.carousel-control-next {
    width: 36px;
    height: 36px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.carousel-control-prev {
    left: 12px;
}

.carousel-control-next {
    right: 12px;
}

.hero-slider-wrapper:hover .carousel-control-prev,
.hero-slider-wrapper:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 16px;
    height: 16px;
    filter: invert(1) brightness(0);
}

/* Stats Overlay on Image */
.hero-stats-overlay {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}

.hero-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bg-primary-soft {
    background: rgba(212, 42, 42, 0.1);
    color: var(--primary);
}

.bg-secondary-soft {
    background: rgba(27, 138, 74, 0.1);
    color: var(--secondary);
}

.bg-info-soft {
    background: rgba(13, 110, 253, 0.1);
    color: #0D6EFD;
}

/* Hero Call Banner */
.hero-call-banner {
    display: inline-block;
}

.hero-call-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(253, 48, 54, 0.06) 0%, rgba(253, 48, 54, 0.12) 100%);
    border: 1.5px solid rgba(253, 48, 54, 0.15);
    border-radius: 60px;
    padding: 10px 24px 10px 12px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-call-link:hover {
    background: linear-gradient(135deg, rgba(253, 48, 54, 0.1) 0%, rgba(253, 48, 54, 0.18) 100%);
    border-color: rgba(253, 48, 54, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 48, 54, 0.15);
}

.hero-call-icon-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-call-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: callRing 2s ease-out infinite;
}

@keyframes callRing {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

.hero-call-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-call-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-call-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.hero-call-arrow {
    font-size: 16px;
    color: var(--primary);
    margin-left: 4px;
    transition: var(--transition);
}

.hero-call-link:hover .hero-call-arrow {
    transform: translateX(4px);
}

/* --- Section Styles --- */
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
    opacity: 0.6;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* --- About Section --- */
.about-img-tall {
    height: 520px;
    object-fit: cover;
}

.about-img-short {
    height: 250px;
    object-fit: cover;
}

.about-exp-badge {
    background: var(--primary);
    color: var(--white);
    padding: 28px 20px;
    text-align: center;
    height: 246px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-exp-number {
    display: block;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.about-exp-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* About Description */
.about-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* About Highlights */
.about-highlights {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 16px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 16px;
    color: var(--dark);
}

.about-highlight-item i {
    font-size: 19px;
    color: var(--secondary);
    flex-shrink: 0;
}

/* About Divider */
.about-divider {
    border-color: var(--border);
    margin: 22px 0;
    opacity: 0.5;
}

/* About Call CTA */
.about-call-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--dark);
    transition: var(--transition);
}

.about-call-cta:hover {
    color: var(--primary);
}

.about-call-cta:hover .about-call-icon {
    background: var(--primary);
    color: var(--white);
}

.about-call-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(212, 42, 42, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

/* --- Mission & Vision --- */
.mv-card {
    border-radius: 16px;
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.mv-dark {
    background: var(--secondary);
    color: var(--white);
}

.mv-outlined {
    background: var(--white);
    border: 1.5px solid var(--border);
}

.mv-heading {
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0;
}

.mv-heading-dark {
    color: var(--dark);
    margin-bottom: 24px;
}

.mv-card-icon {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.3);
}

.mv-sub {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.mv-desc {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    font-size: 16px;
    margin-bottom: 0;
}

.mv-desc-dark {
    color: var(--text);
}

.mv-sub-dark {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.mv-card-icon-dark {
    color: rgba(0, 0, 0, 0.12);
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.mv-list li i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.mv-list-dark li {
    color: var(--text);
}

.mv-list-dark li i {
    color: var(--secondary);
}

/* --- Services --- */
.section-subtitle {
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.7;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(212, 42, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.service-card ul li {
    font-size: 13px;
    color: var(--text);
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* CTA Service Card */
.service-cta-card {
    background: #E8F4FA;
    border-color: transparent;
}

.service-cta-card:hover {
    border-color: transparent;
}

.service-cta-icon {
    background: var(--dark);
    color: var(--white);
}

.service-cta-card:hover .service-cta-icon {
    background: var(--primary);
}

.service-cta-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

/* --- Doctor Cards --- */
.doctor-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    height: 100%;
    border: 1.5px solid var(--border);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.doctor-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.doctor-info {
    flex: 1;
    min-width: 0;
}

.doctor-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.doctor-qualifications {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.doctor-specialty {
    flex-shrink: 0;
    background: rgba(212, 42, 42, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    align-self: center;
}

.doctor-schedule {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text);
}

.doctor-schedule i {
    color: var(--primary);
    font-size: 12px;
    margin-right: 3px;
}

/* --- Gallery --- */
.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    height: 260px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 26px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- Contact --- */
/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background: var(--white);
    color: var(--dark);
}

.contact-wrapper {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.contact-info-side {
    flex: 1;
}

.contact-tag {
    color: var(--primary);
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.contact-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

a.contact-item:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(253, 48, 54, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    transition: var(--transition);
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    display: block;
    color: var(--dark);
    font-size: 14px;
    text-decoration: none;
}

.contact-cta-side {
    flex: 0 0 360px;
    display: flex;
    align-items: stretch;
}

.contact-cta-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-cta-icon {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-cta-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-cta-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.footer-logo {
    height: 40px;
}

.footer-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    text-align: center;
    font-size: 13px;
}

.footer-credit {
    /* opacity: 0.6; */
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    line-height: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* --- Page Header (Blog pages) --- */
.page-header {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Blog Cards --- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-meta i {
    margin-right: 4px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-title a {
    color: var(--dark);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.blog-read-more i {
    transition: var(--transition);
}

.blog-read-more:hover i {
    margin-left: 4px;
}

/* --- Blog Detail --- */
.blog-detail-img {
    margin-bottom: 28px;
}

.blog-detail-img img {
    border-radius: var(--radius);
    width: 100%;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-detail-meta i {
    margin-right: 6px;
    color: var(--primary);
}

.blog-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 1.4;
}

.blog-detail-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
}

.blog-detail-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.blog-quote {
    border-left: 4px solid var(--primary);
    background: var(--light);
    padding: 24px 28px;
    margin: 32px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-quote p {
    font-style: italic;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 0;
}

.blog-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.blog-faq {
    margin-bottom: 32px;
}

.blog-faq .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.blog-faq .accordion-button {
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    padding: 18px 22px;
    box-shadow: none;
}

.blog-faq .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--light);
}

.blog-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.blog-faq .accordion-body {
    padding: 18px 22px;
    color: var(--text);
    line-height: 1.75;
}

.blog-conclusion-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: left;
    padding: 36px 32px;
    border-radius: var(--radius);
    margin: 40px 0 10px;
}

.blog-conclusion-cta h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.blog-conclusion-cta p {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.95;
    margin-bottom: 14px;
    color: var(--white);
}

.blog-conclusion-cta .blog-conclusion-sub {
    opacity: 0.88;
    margin-bottom: 24px;
}

.blog-conclusion-cta .btn-primary-custom {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
}

.blog-conclusion-cta .btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    margin-top: 36px;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--dark);
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 16px;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- Sidebar --- */
@media (min-width: 992px) {
    .blog-sidebar {
        position: sticky;
        top: 100px;
    }
}

.sidebar-widget {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.recent-post {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.recent-post a {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    display: block;
    line-height: 1.5;
    margin-bottom: 4px;
}

.recent-post a:hover {
    color: var(--primary);
}

.recent-date {
    font-size: 13px;
    color: var(--text-light);
}

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

.category-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-size: 15px;
}

.category-list a:hover {
    color: var(--primary);
}

.cat-count {
    background: var(--light);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 32px 28px;
    border-radius: var(--radius);
    color: var(--white);
    text-align: center;
}

.sidebar-cta h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.sidebar-cta .btn-primary-custom {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.sidebar-cta .btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
}

/* --- Background --- */
.bg-light {
    background-color: var(--light) !important;
}

/* --- Selection --- */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* --- Reveal Animation --- */
.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}
