/* =========================
   Root Variables
========================= */
:root {
    --dark: #120827;
    --maroon: #641634;
    --gold: #d7a63d;
    --soft: #fff8ea;
    --text: #2d2a32;
    --muted: #676170;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(18, 8, 39, 0.14);
}

/* =========================
   Global CSS
========================= */
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

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

a {
    transition: 0.3s ease;
}

/* =========================
   Premium Top Header
========================= */
.top-strip,
.premium-top {
    padding: 0;
    color: var(--white);
    background: linear-gradient(90deg, var(--dark), var(--maroon), var(--dark));
    border-bottom: 1px solid rgba(215, 166, 61, 0.22);
}

.premium-top-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 14px;
}

.premium-top .top-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff4d9;
    font-weight: 600;
}

.premium-top .top-left i {
    color: var(--gold);
}

.premium-top .top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-top .top-right a,
.top-strip a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.premium-top .top-right a:hover,
.top-strip a:hover {
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold), #ffd879);
}

.premium-top .top-right i {
    color: var(--gold);
}

.premium-top .top-right a:hover i {
    color: var(--dark);
}

/* =========================
   Premium Navbar
========================= */
.main-nav,
.premium-navbar {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px rgba(18, 8, 39, 0.12);
    border-bottom: 1px solid rgba(215, 166, 61, 0.18);
}

.navbar-brand,
.premium-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    line-height: 1;
    color: var(--dark) !important;
    text-decoration: none;
}

.logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-logo,
.navbar-brand img {
    max-width: 260px;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-symbol,
.premium-logo-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    background: radial-gradient(circle, #ffe8a8, var(--gold));
    border: 2px solid #fff2c8;
    box-shadow: 0 12px 26px rgba(215, 166, 61, 0.35);
}

.brand-text strong,
.navbar-brand strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.05;
}

.brand-text small,
.navbar-brand small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--maroon);
    letter-spacing: 0.5px;
}

.premium-menu {
    gap: 4px;
}

.nav-link,
.premium-menu .nav-link {
    position: relative;
    padding: 10px 14px !important;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 800;
    color: var(--dark) !important;
}

.nav-link:hover,
.nav-link.active,
.premium-menu .nav-link:hover,
.premium-menu .nav-link.active {
    color: var(--maroon) !important;
    background: rgba(215, 166, 61, 0.13);
}

.premium-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 5px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    transition: 0.3s ease;
}

.premium-menu .nav-link:hover::after,
.premium-menu .nav-link.active::after {
    transform: scaleX(1);
}

.premium-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), #ffd879);
    box-shadow: 0 12px 28px rgba(215, 166, 61, 0.35);
}

.premium-call-btn:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--maroon), var(--dark));
}

.navbar-toggler,
.premium-toggler {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(18, 8, 39, 0.16);
    box-shadow: none !important;
}

/* =========================
   Buttons
========================= */
.btn-gold {
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold), #ffd879);
    box-shadow: 0 12px 25px rgba(215, 166, 61, 0.28);
}

.btn-gold:hover {
    color: var(--white);
    background: var(--dark);
}

.btn-dark {
    padding: 12px 24px;
    border-radius: 999px;
}

/* =========================
   Hero Section
========================= */
.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 8, 39, 0.55), rgba(100, 22, 52, 0.28));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.min-vh-hero {
    min-height: 650px;
}

.hero-tag,
.section-kicker,
.section-title span,
.cta-banner span,
.inquiry-card span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(215, 166, 61, 0.35);
    border-radius: 999px;
    font-weight: 800;
    color: var(--gold);
    background: rgba(215, 166, 61, 0.14);
}

.hero-slide h2 {
    margin-bottom: 20px;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
}

.hero-slide p {
    max-width: 760px;
    font-size: 20px;
    color: #fff4d9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

/* =========================
   Common Sections
========================= */
.section {
    padding: 85px 0;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-title h2,
.about-section h1,
.why-section h2,
.inquiry-card h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--dark);
}

.section-title p,
.about-section p,
.why-section p {
    font-size: 17px;
    color: var(--muted);
}

.light-title h2,
.light-title p {
    color: var(--white);
}

/* =========================
   Service Section One
========================= */
.service-card-one {
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.service-card-one:hover {
    transform: translateY(-6px);
}

.service-img {
    height: 300px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

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

.service-body {
    position: relative;
    padding: 26px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -54px;
    margin-bottom: 20px;
    border: 4px solid var(--white);
    border-radius: 18px;
    font-size: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), var(--maroon));
}

.service-body h3,
.service-card-two h3,
.quick-card h3,
.blog-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
}

.service-body h3 a {
    color: var(--dark);
    text-decoration: none;
}

.service-body h3 a:hover {
    color: var(--maroon);
}

.service-body p {
    color: var(--muted);
}

/* =========================
   About Section
========================= */
.about-section {
    background: linear-gradient(180deg, var(--white), var(--soft));
}

.about-image-wrap {
    position: relative;
    padding: 14px;
    border-radius: 34px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-image-wrap img {
    width: 100%;
    border-radius: 26px;
}

.content-text {
    font-size: 17px;
    line-height: 1.8;
    color: #494450;
}

.content-text h2,
.content-text h3 {
    margin-top: 24px;
    font-weight: 900;
    color: var(--dark);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* =========================
   CTA Banner
========================= */
.cta-banner {
    position: relative;
    padding: 90px 0;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 8, 39, 0.65), rgba(100, 22, 52, 0.42));
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
}

.cta-banner p {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 18px;
    color: #fff0d1;
}

/* =========================
   Service Section Two
========================= */
.services-two {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), #23103f 45%, var(--maroon));
}

.services-two::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(215, 166, 61, 0.16);
}

.service-card-two {
    height: 100%;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.service-card-two:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.service-card-two i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 20px;
    font-size: 24px;
    color: var(--dark);
    background: var(--gold);
}

.service-card-two h3 {
    color: var(--white);
}

.service-card-two h3 a {
    color: var(--white);
    text-decoration: none;
}

.service-card-two h3 a:hover {
    color: #ffd879;
}

.service-card-two p {
    color: #f7ead0;
}

.service-card-two > a {
    font-weight: 800;
    color: #ffd879;
    text-decoration: none;
}

/* =========================
   Why Choose Section
========================= */
.why-card {
    height: 100%;
    padding: 26px;
    border: 1px solid #f3eadb;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.why-card i {
    margin-bottom: 16px;
    font-size: 28px;
    color: var(--gold);
}

.why-card h4 {
    font-weight: 900;
    color: var(--dark);
}

.why-card p {
    font-size: 15px;
}

/* =========================
   Counter Section
========================= */
.counter-strip {
    padding: 44px 0;
    background: var(--dark);
}

.counter-box {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.counter-box b {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: var(--gold);
}

.counter-box span {
    font-weight: 700;
}

/* =========================
   Quick Services
========================= */
.quick-services {
    background: linear-gradient(180deg, #ffffff, var(--soft));
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.quick-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    border-left: 5px solid var(--gold);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.quick-card:hover {
    transform: translateY(-4px);
}

.quick-card div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-card i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 21px;
    color: var(--white);
    background: linear-gradient(135deg, var(--maroon), var(--dark));
}

.quick-card h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.quick-card h3 a {
    padding: 0;
    border-radius: 0;
    font-weight: 900;
    color: var(--dark);
    text-decoration: none;
    background: transparent;
}

.quick-card h3 a:hover {
    color: var(--maroon);
}

.quick-card > a {
    min-width: 72px;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background: var(--dark);
}

.quick-card > a:hover {
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold), #ffd879);
}

/* =========================
   Testimonials
========================= */
.testimonials-section {
    background: var(--soft);
}

.review-card {
    height: 100%;
    padding: 30px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.stars {
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--gold);
}

.review-card h4 {
    margin-bottom: 0;
    font-weight: 900;
}

.review-card span {
    color: var(--muted);
}

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

.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: 0.35s ease;
}

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

.blog-card div {
    padding: 24px;
}

.blog-card small {
    font-weight: 800;
    color: var(--gold);
}

.blog-card a {
    font-weight: 900;
    color: var(--maroon);
    text-decoration: none;
}

/* =========================
   FAQ & Contact
========================= */
.faq-contact-section {
    background: linear-gradient(180deg, var(--white), var(--soft));
}

.accordion-item {
    overflow: hidden;
    margin-bottom: 12px;
    border: 0;
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(18, 8, 39, 0.08);
}

.accordion-button {
    font-weight: 800;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background: var(--dark);
}

.inquiry-card {
    padding: 34px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    padding: 13px 15px;
    border: 1px solid #eadfce;
    border-radius: 14px;
}

/* =========================
   Inner Page Banner
========================= */
.page-banner {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), var(--maroon));
}

.page-banner::before {
    content: "ॐ";
    position: absolute;
    top: 10%;
    right: 8%;
    font-size: 150px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
}

.page-banner h1 {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
}

.page-banner p {
    font-size: 18px;
    color: #fff1d5;
}

/* =========================
   Details Page
========================= */
.detail-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

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

.sidebar-box h3 {
    font-weight: 900;
}

.side-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.side-link:hover {
    color: var(--maroon);
}

/* =========================
   Contact Info Card
========================= */
.contact-info-card {
    height: 100%;
    padding: 36px;
    border-radius: 30px;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), var(--maroon));
    box-shadow: var(--shadow);
}

.contact-info-card a {
    color: var(--white);
    text-decoration: none;
}

.contact-info-card h2 {
    margin-bottom: 24px;
    font-weight: 900;
}

/* =========================
   Footer
========================= */
.site-footer {
    padding: 70px 0 0;
    color: #d8d2e4;
    background: #090414;
}

.site-footer h5 {
    margin-bottom: 18px;
    font-weight: 900;
    color: var(--white);
}

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

.site-footer li {
    margin-bottom: 9px;
}

.site-footer a {
    color: #d8d2e4;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffd879;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--white);
}

.footer-logo,
.footer-brand img {
    max-width: 240px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-call {
    display: inline-block;
    margin-top: 10px;
    font-weight: 900;
    color: #ffd879 !important;
}

.footer-bottom {
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #aaaaaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   Floating Buttons
========================= */
.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-buttons a {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.float-call {
    background: #db3348;
}

.float-wa {
    background: #18a558;
}

/* =========================
   Responsive CSS
========================= */
@media (max-width: 991px) {
    .premium-top-inner {
        justify-content: center;
        flex-direction: column;
        padding: 9px 0;
        text-align: center;
    }

    .premium-top .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .premium-navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 16px;
        border-radius: 20px;
        background: var(--soft);
        border: 1px solid rgba(215, 166, 61, 0.22);
        box-shadow: 0 15px 30px rgba(18, 8, 39, 0.08);
    }

    .premium-menu {
        gap: 6px;
    }

    .premium-menu .nav-link {
        padding: 12px 16px !important;
        background: var(--white);
    }

    .premium-call-btn {
        justify-content: center;
        width: 100%;
        margin-top: 8px;
    }

    .site-logo,
    .navbar-brand img {
        max-width: 220px;
        max-height: 62px;
    }

    .min-vh-hero {
        min-height: 560px;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 65px 0;
    }
}

@media (max-width: 575px) {
   
    .premium-brand,
    .navbar-brand {
        max-width: 230px;
    }

    .site-logo,
    .navbar-brand img {
        max-width: 190px;
        max-height: 54px;
    }

    .premium-logo-icon,
    .brand-symbol {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 26px;
        border-radius: 14px;
    }

    .brand-text strong,
    .navbar-brand strong {
        font-size: 18px;
    }

    .brand-text small,
    .navbar-brand small {
        font-size: 10px;
    }

    .hero-slide h2 {
        font-size: 36px;
    }

    .hero-slide p {
        font-size: 17px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-card {
        align-items: flex-start;
    }

    .quick-card > a {
        min-width: 68px;
        padding: 8px 14px;
    }

    .section {
        padding: 52px 0;
    }

    .inquiry-card {
        padding: 24px;
    }

    .floating-buttons {
        right: 12px;
        bottom: 12px;
    }

    .floating-buttons a {
        width: 48px;
        height: 48px;
    }

    .service-img,
    .blog-card img {
        height: 185px;
    }

    .footer-logo,
    .footer-brand img {
        max-width: 200px;
        max-height: 62px;
    }
}
/* =========================
   Blog Detail Page
========================= */
.blog-detail-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.blog-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(215, 166, 61, 0.18), transparent 35%);
    z-index: 1;
}

.blog-detail-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero-content {
    max-width: 850px;
    padding: 70px 0;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--gold);
    background: rgba(215, 166, 61, 0.14);
    border: 1px solid rgba(215, 166, 61, 0.35);
}

.blog-detail-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff4d9;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Main Detail */
.blog-detail-section {
    background: linear-gradient(180deg, #ffffff, var(--soft));
}

.blog-detail-card {
    overflow: hidden;
    border-radius: 32px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.blog-featured-img {
    height: 430px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-area {
    padding: 38px;
    font-size: 17px;
    line-height: 1.85;
    color: #494450;
}

.blog-content-area h1,
.blog-content-area h2,
.blog-content-area h3,
.blog-content-area h4 {
    margin-top: 26px;
    margin-bottom: 14px;
    font-weight: 900;
    color: var(--dark);
}

.blog-content-area h2 {
    font-size: 34px;
}

.blog-content-area h3 {
    font-size: 26px;
}

.blog-content-area p {
    margin-bottom: 18px;
}

.blog-content-area ul,
.blog-content-area ol {
    margin-bottom: 22px;
    padding-left: 24px;
}

.blog-content-area li {
    margin-bottom: 8px;
}

.blog-content-area a {
    color: var(--maroon);
    font-weight: 800;
    text-decoration: none;
}

.blog-content-area a:hover {
    color: var(--gold);
}

.blog-content-area blockquote {
    margin: 28px 0;
    padding: 24px 28px;
    border-left: 5px solid var(--gold);
    border-radius: 18px;
    background: var(--soft);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.blog-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 38px 38px;
    padding: 26px;
    border-radius: 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), var(--maroon));
}

.blog-bottom-cta h3 {
    margin-bottom: 6px;
    font-weight: 900;
}

.blog-bottom-cta p {
    margin: 0;
    color: #fff0d1;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.blog-side-box {
    margin-bottom: 24px;
    padding: 26px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.blog-side-box h3 {
    margin-bottom: 18px;
    font-weight: 900;
    color: var(--dark);
}

.contact-side-box {
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), var(--maroon));
}

.contact-side-box span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--gold);
    font-weight: 800;
    background: rgba(215, 166, 61, 0.14);
    border: 1px solid rgba(215, 166, 61, 0.35);
}

.contact-side-box h3 {
    color: var(--white);
}

.contact-side-box p {
    color: #fff0d1;
}

.side-call-btn,
.side-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin-top: 12px;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.side-call-btn {
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold), #ffd879);
}

.side-whatsapp-btn {
    color: var(--white);
    background: #18a558;
}

.recent-blog-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.recent-blog-item:last-child {
    border-bottom: 0;
}

.recent-blog-item img {
    width: 78px;
    height: 62px;
    border-radius: 12px;
    object-fit: cover;
}

.recent-blog-item strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    color: var(--dark);
}

.recent-blog-item small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 700;
}

.recent-blog-item:hover strong {
    color: var(--maroon);
}

.blog-service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid #eeeeee;
    color: var(--dark);
    font-weight: 800;
    text-decoration: none;
}

.blog-service-link:last-child {
    border-bottom: 0;
}

.blog-service-link i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--maroon), var(--dark));
}

.blog-service-link:hover {
    color: var(--maroon);
}

/* Responsive Blog Detail */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
    }

    .blog-featured-img {
        height: 340px;
    }

    .blog-content-area {
        padding: 30px;
    }

    .blog-bottom-cta {
        margin: 0 30px 30px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .blog-detail-hero {
        min-height: 360px;
    }

    .blog-hero-content {
        padding: 50px 0;
    }

    .blog-meta {
        gap: 8px;
    }

    .blog-meta span {
        font-size: 13px;
    }

    .blog-featured-img {
        height: 240px;
    }

    .blog-content-area {
        padding: 22px;
        font-size: 16px;
    }

    .blog-content-area h2 {
        font-size: 27px;
    }

    .blog-content-area h3 {
        font-size: 23px;
    }

    .blog-bottom-cta {
        margin: 0 22px 22px;
        padding: 22px;
    }

    .blog-side-box {
        padding: 22px;
    }
}
.blog-detail-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark), var(--maroon));
}