/* ========================================
   Sreevaas Smart Infra Developers - Custom Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
    --primary: #1a1a1a;
    --secondary: #F9312F;
    --primary-color: #1a1a1a;
    --secondary-color: #F9312F;
    --accent-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #363636;
    --white: #ffffff;
    --black: #000000;
    --border-color: #DEDEDE;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-card: 0px 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0px 12px 35px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --border-radius-lg: 14px;
}

/* ---- Global Styles ---- */
body {
    font-family: 'Figtree', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
}

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

a:hover {
    color: var(--secondary);
}

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

/* ---- Buttons ---- */
.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background-color: #e02a1e;
    border-color: #e02a1e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 49, 47, 0.35);
}

.btn-outline-primary {
    border-color: var(--secondary);
    color: var(--secondary);
    border-width: 2px;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-light:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary);
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--secondary);
}

/* ---- Top Bar ---- */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-item {
    margin-right: 20px;
}

.top-bar-item i {
    margin-right: 5px;
    color: var(--secondary);
}

.top-bar-link {
    color: var(--white);
    margin-left: 20px;
    font-size: 14px;
}

.top-bar-link:hover {
    color: var(--secondary);
}

/* ---- Header / Navbar ---- */
.header {
    background-color: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 45px;
}

.navbar-brand div {
    background: var(--primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}

.navbar-brand div span {
    color: var(--secondary);
}

.navbar-brand div small {
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    padding: 12px 0;
    margin-top: 10px;
    border-top: 3px solid var(--secondary);
}

.dropdown-item {
    padding: 10px 24px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(249, 49, 47, 0.06);
    color: var(--secondary);
    padding-left: 28px;
}

/* ---- Hero Section ---- */
.hero-section {
    background: linear-gradient(135deg, rgba(26,26,26,0.92), rgba(26,26,26,0.85)), url('../images/backgrounds/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

.hero-section p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 500px;
}

/* ---- Hero Banner Slider ---- */
.hero-slider {
    position: relative;
    min-height: 600px;
}

.hero-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

.hero-slide p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 500px;
}

.hero-slider .carousel-indicators {
    bottom: 20px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid #fff;
}

.hero-slider .carousel-indicators .active {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 60px 0;
    background-color: var(--primary);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    color: #ccc;
    margin: 0;
}

/* ---- Section Title ---- */
.section-title {
    margin-bottom: 45px;
}

.section-title.text-center {
    text-align: center;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    font-size: 2.2rem;
    margin-bottom: 0;
}

.section-title.text-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title:not(.text-center) h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title h2 .highlight-text,
.highlight-text {
    color: var(--secondary);
    font-weight: 600;
}

.section-subtitle {
    color: #888;
    font-size: 1rem;
    margin-top: 10px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- USP Section ---- */
.usp-section {
    background: #f9f9f9;
    padding: 70px 0;
}

.usp-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.usp-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
}

.usp-card h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.usp-card p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
}

.usp-card.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px 20px;
    text-align: left;
}

.usp-card.has-bg .icon-wrap {
    display: none;
}

.usp-card.has-bg h6 {
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.usp-card.has-bg p {
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.usp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
}

.usp-card.has-bg:hover .usp-card-overlay {
    background: linear-gradient(to top, rgba(249,49,47,0.8) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

/* ---- Overview Section ---- */
.overview-section {
    padding: 80px 0;
}

.overview-section h2 {
    font-weight: 700;
    color: var(--primary);
}

.overview-section p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.overview-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.overview-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ---- Quality & Transparency ---- */
.quality-section {
    background: var(--primary);
    color: #fff;
    padding: 70px 0;
}

.quality-section h2 {
    font-weight: 700;
    color: #fff;
}

.quality-section .highlight-text {
    color: var(--secondary);
}

.quality-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.quality-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.quality-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
}

/* ---- Gallery Section ---- */
.gallery-section {
    padding: 70px 0;
    background: #f4f4f4;
}

.gallery-section h2 {
    font-weight: 700;
    color: var(--primary);
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.6);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.35);
    transition: background 0.3s;
    border-radius: 12px;
}

.gallery-item:hover::after {
    background: rgba(249,49,47,0.45);
}

.gallery-item i {
    position: relative;
    z-index: 2;
}

.gi-1 { background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=600') center/cover no-repeat; }
.gi-2 { background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=600') center/cover no-repeat; }
.gi-3 { background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=600') center/cover no-repeat; }
.gi-4 { background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=600') center/cover no-repeat; }
.gi-5 { background: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?w=600') center/cover no-repeat; }
.gi-6 { background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=600') center/cover no-repeat; }

/* ---- Process Section ---- */
.process-section {
    padding: 80px 0;
}

.process-section h2 {
    font-weight: 700;
    color: var(--primary);
}

.process-carousel .carousel-item img,
.process-carousel .process-slide {
    border-radius: 14px;
    overflow: hidden;
}

.process-slide {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
}

.process-step h6 {
    font-weight: 700;
    color: var(--primary);
}

.process-step p {
    font-size: 0.85rem;
    color: #777;
}

.process-step img {
    width: 100px;
    margin-bottom: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    border: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0);
}

.process-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 25px;
}

/* ---- Testimonials Section ---- */
.testimonials-section {
    background: var(--primary);
    color: #fff;
    padding: 70px 0;
}

.testimonials-section h2 {
    font-weight: 700;
    color: #fff;
}

.testimonials-section .section-subtitle {
    color: #aaa;
}

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(249,49,47,0.3);
    border-radius: 14px;
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(249,49,47,0.1);
}

.testimonial-card .stars {
    color: var(--secondary);
    margin-bottom: 14px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--secondary);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #fff;
}

.testimonial-card span {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---- Sub-Services Section ---- */
.subservices-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.subservices-section h2 {
    font-weight: 700;
    color: var(--primary);
}

.sub-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.sub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.sub-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #e0c470);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
}

.sub-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.sub-card p {
    font-size: 0.9rem;
    color: #666;
}

/* ---- Google Reviews Section ---- */
.reviews-section {
    padding: 60px 0;
}

.reviews-widget {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.reviews-widget .g-logo {
    font-size: 2.2rem;
    font-weight: 700;
}

.reviews-widget .g-logo span:nth-child(1) { color: #4285F4; }
.reviews-widget .g-logo span:nth-child(2) { color: #EA4335; }
.reviews-widget .g-logo span:nth-child(3) { color: #FBBC05; }
.reviews-widget .g-logo span:nth-child(4) { color: #4285F4; }
.reviews-widget .g-logo span:nth-child(5) { color: #34A853; }
.reviews-widget .g-logo span:nth-child(6) { color: #EA4335; }

.reviews-rating {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
}

.reviews-stars {
    color: var(--secondary);
    font-size: 1.3rem;
}

.reviews-count {
    color: #888;
    font-size: 0.95rem;
}

/* ---- Google Review Cards (individual) ---- */
.google-review-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
    transition: var(--transition);
}

.google-review-card:hover {
    box-shadow: var(--shadow-hover);
}

.google-review-card .stars {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.google-review-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ---- Locations Section ---- */
.locations-section {
    padding: 60px 0;
    background: #f4f4f4;
}

.locations-section h2 {
    font-weight: 700;
    color: var(--primary);
}

.location-link {
    display: inline-block;
    padding: 10px 24px;
    margin: 6px;
    background: #fff;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.location-link:hover {
    background: var(--secondary);
    color: #fff;
}

/* ---- Blogs Section ---- */
.blogs-section {
    padding: 70px 0;
}

.blogs-section h2 {
    font-weight: 700;
    color: var(--primary);
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

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

.blog-card .blog-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.7);
    position: relative;
    background: #ddd;
}

.blog-card .blog-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.3);
}

.blog-card .blog-img i {
    position: relative;
    z-index: 2;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .blog-body {
    padding: 22px;
}

.blog-card .blog-content {
    padding: 22px;
}

.blog-card .blog-body h6,
.blog-card h3 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-card .blog-body p,
.blog-card p {
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 14px;
}

.blog-card .blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card .read-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* ---- Service Cards ---- */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(249, 49, 47, 0.1);
}

.service-card img {
    width: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ---- Why Choose Us Cards ---- */
.why-choose-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-choose-card img {
    width: 60px;
    margin-bottom: 20px;
}

.why-choose-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-choose-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ---- Project Cards ---- */
.project-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    margin-bottom: 30px;
    background: var(--white);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-card .project-info {
    padding: 22px;
}

.project-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.project-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ---- Interior Room Cards ---- */
.room-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

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

.room-card:hover img {
    transform: scale(1.1);
}

.room-card .room-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 20px;
}

.room-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* ---- Package Cards ---- */
.package-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.package-card .package-icon {
    width: 60px;
    margin-bottom: 15px;
}

.package-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.package-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* ---- Comparison Table ---- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary);
    color: var(--white);
}

.comparison-table tr:nth-child(even) {
    background-color: var(--accent-color);
}

/* ---- Team Section ---- */
.team-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--accent-color);
}

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ---- FAQ Section ---- */
.faq-section .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 15px;
    padding: 18px 22px;
    color: var(--primary);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(249, 49, 47, 0.05);
    color: var(--secondary);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F9312F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 20px 22px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ---- Filter Tabs ---- */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
    gap: 10px;
}

.filter-tab {
    padding: 10px 28px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    color: var(--primary);
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* ---- Forms ---- */
.form-control {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(249, 49, 47, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--primary);
}

/* ---- Expert Modal ---- */
.expert-modal .modal-content {
    border-radius: 16px;
    overflow: hidden;
}

.expert-modal .modal-header {
    background: var(--primary);
    color: #fff;
}

.expert-modal .modal-header .btn-close {
    filter: invert(1);
}

/* ---- Footer ---- */
.footer {
    background: var(--primary);
    color: #ccc;
    padding: 70px 0 0;
}

.footer-logo {
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
}

.footer-title {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
    font-size: 16px;
}

.footer-social .social-link:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: #333;
    margin: 40px 0 30px;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
    text-align: center;
    font-size: 0.82rem;
    color: #666;
    margin-top: 40px;
}

.footer-form-input {
    background: rgba(255,255,255,0.07);
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
}

.footer-form-input:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary);
    color: #fff;
    box-shadow: none;
}

.footer-form-input::placeholder {
    color: #888;
}

.footer-sitemap a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 6px;
    transition: var(--transition);
}

.footer-sitemap a:hover {
    color: var(--secondary);
}

.footer-locations {
    font-size: 0.85rem;
    color: #888;
    line-height: 2;
}

.footer-support a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    transition: var(--transition);
}

.footer-support a:hover {
    color: var(--secondary);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---- Page Banner ---- */
.page-banner {
    background: linear-gradient(135deg, rgba(26,26,26,0.92), rgba(26,26,26,0.85)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.page-banner p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Breadcrumb ---- */
.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 16px;
}

.page-banner .breadcrumb a,
.page-banner .breadcrumb .breadcrumb-item.active {
    color: var(--secondary);
    text-decoration: none;
}

/* ---- Pagination ---- */
.pagination {
    justify-content: center;
    gap: 8px;
}

.pagination .page-link {
    color: var(--primary);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(249, 49, 47, 0.3);
}

/* ---- Cost Calculator ---- */
.calculator-form {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

/* ---- Career Section ---- */
.perk-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--accent-color);
    height: 100%;
}

.perk-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.perk-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ---- Referral Section ---- */
.referral-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.referral-step .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* ---- Section Padding ---- */
.section {
    padding: 80px 0;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ---- Utility Classes ---- */
.text-gold {
    color: var(--secondary) !important;
}

.text-red {
    color: var(--secondary) !important;
}

.btn-gold,
.btn-red {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-gold:hover,
.btn-red:hover {
    background-color: #e02a1e;
    border-color: #e02a1e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 49, 47, 0.35);
}

.letter-spacing {
    letter-spacing: 2px;
}

.social-icon {
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        margin-top: 10px;
    }
    
    .hero-section h1,
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .hero-slider {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-section h1,
    .hero-slide h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .top-bar {
        display: none !important;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
    }
}

/* ---- Home Gallery Slider ---- */
.home-gallery-section {
    padding: 70px 0 30px;
    background: var(--white);
    overflow: hidden;
}

.home-gallery-track-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
    position: relative;
}

.home-gallery-track {
    display: flex;
    gap: 16px;
    padding: 0 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.home-gallery-track::-webkit-scrollbar {
    display: none;
}

.home-gallery-slide {
    flex: 0 0 calc(20% - 13px);
    min-width: 220px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.home-gallery-slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.home-gallery-slide:hover img {
    transform: scale(1.05);
}

.home-gallery-slide::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    color: #fff;
    background: rgba(249,49,47,0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 3;
}

.home-gallery-slide:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Home Gallery Lightbox */
.home-gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.home-gallery-lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.home-gallery-lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s;
    line-height: 1;
}

.home-gallery-lb-close:hover {
    color: var(--secondary);
}

.home-gallery-lb-prev,
.home-gallery-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-gallery-lb-prev { left: 20px; }
.home-gallery-lb-next { right: 20px; }

.home-gallery-lb-prev:hover,
.home-gallery-lb-next:hover {
    background: rgba(249,49,47,0.7);
}

.home-gallery-lb-content {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-gallery-lb-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* =====================
   PROJECT DETAILS PAGE
   ===================== */

.pd-hero {
    padding: 120px 0 80px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.pd-category-badge {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.pd-hero-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.pd-hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Stats Bar */
.pd-stats {
    background: #fff;
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.pd-stats .container {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    padding: 20px 30px;
}

.pd-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
}

.pd-stat-item i {
    font-size: 1.3rem;
    color: var(--secondary);
    width: 36px;
    height: 36px;
    background: rgba(249,49,47,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-stat-item small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 2px;
}

.pd-stat-item strong {
    font-size: 0.9rem;
    color: var(--primary);
    margin: 0;
}

/* Sections */
.pd-section {
    padding: 80px 0;
}

.pd-section.bg-light {
    background: var(--accent-color);
}

.pd-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.pd-content p {
    margin-bottom: 12px;
}

.pd-content ul,
.pd-content ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.pd-content li {
    margin-bottom: 6px;
}

.pd-content strong {
    color: var(--primary);
}

/* Overview Image */
.pd-overview-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.pd-overview-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.pd-overview-img:hover img {
    transform: scale(1.03);
}

/* Detail Cards (Scope & Specs) */
.pd-detail-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: var(--transition);
}

.pd-detail-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.pd-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(249,49,47,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pd-detail-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.pd-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

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

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

.pd-gallery-overlay i {
    color: #fff;
    font-size: 1.5rem;
}

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

/* Video Wrapper */
.pd-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.pd-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
}

/* Testimonial Section */
.pd-testimonial-section {
    background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
    padding: 80px 0;
    color: #fff;
}

.pd-testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.pd-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pd-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(249,49,47,0.5);
}

/* Sustainability Graphic */
.pd-sustainability-graphic {
    padding: 60px;
}

@media (max-width: 768px) {
    .pd-hero {
        padding: 100px 0 60px;
        min-height: 300px;
    }
    .pd-hero-title {
        font-size: 1.8rem;
    }
    .pd-stats .container {
        padding: 15px;
    }
    .pd-stat-item {
        padding: 8px 5px;
    }
    .pd-section {
        padding: 50px 0;
    }
    .pd-detail-card {
        padding: 25px;
    }
    .pd-gallery-item {
        height: 180px;
    }
    .pd-testimonial-text {
        font-size: 1rem;
    }
    .pd-sustainability-graphic {
        padding: 30px;
    }
}

/* Client Details & Project Status */
.pd-client-status {
    padding: 60px 0;
    background: #f9f9f9;
}
.pd-client-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 4px solid var(--secondary, #F9312F);
}
.pd-client-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}
.pd-client-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249,49,47,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-client-avatar i {
    font-size: 24px;
    color: var(--secondary, #F9312F);
}
.pd-client-card-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #1a1a1a;
}
.pd-client-subtitle {
    margin: 0;
    font-size: 0.8rem;
    color: #999;
}
.pd-client-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pd-client-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pd-client-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-client-icon i {
    font-size: 15px;
    color: var(--secondary, #F9312F);
}
.pd-client-row small {
    display: block;
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pd-client-row strong {
    font-size: 0.95rem;
    color: #333;
}
.pd-status-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}
.pd-status-card h4 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    color: #1a1a1a;
}
.pd-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.pd-status-badge i {
    font-size: 1rem;
}
.pd-status-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 18px;
}
.pd-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}
.pd-status-row:last-child {
    border-bottom: none;
}
.pd-status-row small {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pd-status-row strong {
    font-size: 0.95rem;
    color: #333;
}

/* Project Tabs Section */
.pd-tabs-section {
    padding: 60px 0;
    background: #f9f9f9;
}
.pd-tabs-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}
.pd-nav-tabs {
    border-bottom: none;
    background: #fafafa;
    padding: 12px 12px 0;
    gap: 4px;
    display: flex;
    flex-wrap: wrap;
}
.pd-nav-tabs .nav-link {
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #777;
    background: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.pd-nav-tabs .nav-link:hover {
    color: var(--secondary, #F9312F);
    background: rgba(249,49,47,0.04);
}
.pd-nav-tabs .nav-link.active {
    color: var(--secondary, #F9312F);
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}
.pd-nav-tabs .nav-link i {
    font-size: 0.85rem;
}
.pd-tab-content {
    padding: 30px;
}

/* Tab: Feature Cards */
.pd-tab-feature-card {
    text-align: center;
    padding: 24px 16px;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.pd-tab-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: rgba(249,49,47,0.15);
}
.pd-tab-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(249,49,47,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.pd-tab-feature-icon i {
    font-size: 20px;
    color: var(--secondary, #F9312F);
}
.pd-tab-feature-card h6 {
    margin: 0;
    font-size: 0.88rem;
    color: #333;
    line-height: 1.4;
}

/* Tab: Client Grid */
.pd-tab-client-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 600px;
}
.pd-tab-client-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.pd-tab-client-row:hover {
    border-color: rgba(249,49,47,0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.pd-tab-client-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(249,49,47,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-tab-client-icon i {
    font-size: 16px;
    color: var(--secondary, #F9312F);
}
.pd-tab-client-row small {
    display: block;
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pd-tab-client-row strong {
    font-size: 0.95rem;
    color: #333;
}

/* Tab: Status */
.pd-tab-status-wrapper {
    text-align: center;
}
.pd-tab-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 28px;
}
.pd-tab-status-badge i {
    font-size: 1.1rem;
}
.pd-tab-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.pd-tab-status-item {
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
}
.pd-tab-status-item small {
    display: block;
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.pd-tab-status-item strong {
    font-size: 1rem;
    color: #333;
}

/* Tab: Content Body (Scope / Specs) */
.pd-tab-content-body {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    padding: 10px 0;
}
.pd-tab-content-body p {
    margin-bottom: 14px;
}
.pd-tab-content-body ul,
.pd-tab-content-body ol {
    padding-left: 20px;
    margin-bottom: 14px;
}
.pd-tab-content-body li {
    margin-bottom: 8px;
}
.pd-tab-content-body strong {
    color: #333;
}

@media (max-width: 768px) {
    .pd-client-status .col-lg-7,
    .pd-client-status .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .pd-status-card {
        margin-top: 0;
    }
    .pd-nav-tabs {
        padding: 8px 8px 0;
    }
    .pd-nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    .pd-tab-content {
        padding: 20px 16px;
    }
    .pd-tab-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================
   Blog Detail Page
   ============================ */

/* Hero */
.bd-hero {
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 50px;
    background: #1a1a1a center/cover no-repeat;
    position: relative;
}
.bd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
}
.bd-hero .container {
    position: relative;
    z-index: 2;
}
.bd-hero-content {
    max-width: 720px;
}
.bd-hero-category {
    display: inline-block;
    background: var(--secondary, #F9312F);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.bd-hero h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}
.bd-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.bd-hero-meta span {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

/* Author Byline Bar */
.bd-author-section {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 0;
}
.bd-author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.bd-author-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.bd-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}
.bd-author-placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 18px;
}
.bd-author-info strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a1a;
}
.bd-author-info small {
    display: block;
    font-size: 0.8rem;
    color: #999;
}
.bd-author-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bd-share-label {
    font-size: 0.8rem;
    color: #999;
    margin-right: 4px;
}
.bd-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #555;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.bd-share-btn:hover {
    background: var(--secondary, #F9312F);
    color: #fff;
    transform: translateY(-2px);
}

/* Main Content Layout */
.bd-content-section {
    padding: 50px 0 60px;
    background: #fafafa;
}

/* Sticky Sidebar */
.bd-sidebar {
    position: sticky;
    top: 100px;
}
.bd-sidebar-block {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.bd-sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bd-toc {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bd-toc-link {
    display: block;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    line-height: 1.4;
}
.bd-toc-link:hover {
    color: var(--secondary, #F9312F);
    background: rgba(249,49,47,0.04);
}
.bd-toc-link.active {
    color: var(--secondary, #F9312F);
    background: rgba(249,49,47,0.06);
    border-left-color: var(--secondary, #F9312F);
    font-weight: 600;
}
.bd-sidebar-shares {
    display: flex;
    gap: 8px;
}

/* Article */
.bd-article {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}
.bd-article-body {
    padding: 40px 44px;
    font-size: 1.02rem;
    color: #444;
    line-height: 1.85;
}
.bd-article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 36px 0 16px;
    padding-top: 10px;
}
.bd-article-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 28px 0 12px;
}
.bd-article-body p {
    margin-bottom: 18px;
}
.bd-article-body ul,
.bd-article-body ol {
    padding-left: 22px;
    margin-bottom: 18px;
}
.bd-article-body li {
    margin-bottom: 8px;
}
.bd-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}
.bd-article-body strong {
    color: #222;
}

/* Pull Quote */
.bd-article-body blockquote,
.bd-article-body .bd-pullquote {
    margin: 32px 0;
    padding: 28px 32px;
    border-left: 4px solid var(--secondary, #F9312F);
    background: rgba(249,49,47,0.03);
    border-radius: 0 12px 12px 0;
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

/* Full-Width Breakout */
.bd-article-body .bd-breakout {
    margin: 36px -44px;
    padding: 30px 44px;
    background: #f9f9f9;
    border-radius: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.bd-article-body .bd-breakout img {
    border-radius: 12px;
    margin: 10px 0;
}

/* Image Gallery Grid */
.bd-article-body .bd-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin: 28px 0;
}
.bd-article-body .bd-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bd-article-body .bd-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Before/After Slider */
.bd-article-body .bd-before-after,
.bd-before-after {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 14px;
    cursor: ew-resize;
    user-select: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}
.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
}
.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}
.ba-after {
    z-index: 1;
}
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.ba-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    border: 3px solid var(--secondary, #F9312F);
}
.ba-before-label,
.ba-after-label {
    position: absolute;
    bottom: 14px;
    padding: 5px 14px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 4;
    letter-spacing: 0.5px;
}
.ba-before-label { left: 14px; }
.ba-after-label { right: 14px; }
.ba-range {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    top: 0;
    left: 0;
    margin: 0;
}

/* Inline CTA */
.bd-cta-inline {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    border: 2px solid #eee;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.bd-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(249,49,47,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bd-cta-icon i {
    font-size: 26px;
    color: var(--secondary, #F9312F);
}
.bd-cta-text {
    flex: 1;
    min-width: 200px;
}
.bd-cta-text h5 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 700;
}
.bd-cta-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}
.bd-cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Bottom Share */
.bd-bottom-share {
    margin: 32px 44px 0;
    padding: 24px 0;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.bd-bottom-share span {
    font-size: 0.9rem;
    color: #777;
}
.bd-share-btns {
    display: flex;
    gap: 8px;
}

/* Related Posts */
.bd-related-section {
    padding: 70px 0;
    background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .bd-hero {
        min-height: 400px;
        padding: 60px 0 40px;
    }
    .bd-hero h1 {
        font-size: 1.8rem;
    }
    .bd-article-body {
        padding: 28px 22px;
    }
    .bd-article-body .bd-breakout {
        margin: 28px -22px;
        padding: 24px 22px;
    }
    .bd-bottom-share {
        margin: 24px 22px 0;
    }
    .bd-cta-inline {
        flex-direction: column;
        text-align: center;
    }
    .bd-cta-actions {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .bd-hero h1 {
        font-size: 1.5rem;
    }
    .bd-author-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .bd-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .bd-cta-actions .btn {
        width: 100%;
    }
}

/* ============================
   Blog Detail - Sidebar & Navigation
   ============================ */

/* Featured Image */
.bd-featured-image {
    margin-bottom: 30px;
    border-radius: 14px;
    overflow: hidden;
}
.bd-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Navigation */
.bd-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid #eee;
    margin-top: 10px;
}
.bd-nav-prev,
.bd-nav-next {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 16px 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 48%;
}
.bd-nav-prev:hover,
.bd-nav-next:hover {
    border-color: rgba(249,49,47,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.bd-nav-next {
    text-align: right;
    margin-left: auto;
}
.bd-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    font-weight: 600;
    margin-bottom: 4px;
}
.bd-nav-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Tags in Article */
.bd-article-tags {
    padding: 20px 0;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.bd-article-tags i {
    color: #999;
    font-size: 0.9rem;
}
.bd-tag {
    display: inline-block;
    padding: 5px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.bd-tag:hover {
    background: rgba(249,49,47,0.08);
    color: var(--secondary, #F9312F);
    border-color: rgba(249,49,47,0.2);
}

/* Right Sidebar */
.bd-sidebar-right {
    position: relative;
}
.bd-sidebar-widget {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.bd-sidebar-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}
.bd-sticky-toc {
    position: sticky;
    top: 100px;
}

/* Popular Posts Widget */
.bd-popular-post {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}
.bd-popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.bd-popular-post:first-child {
    padding-top: 0;
}
.bd-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
}
.bd-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bd-post-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}
.bd-post-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.bd-post-text a {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.bd-post-text a:hover {
    color: var(--secondary, #F9312F);
}
.bd-post-date {
    font-size: 0.78rem;
    color: #999;
    margin-top: 4px;
}

/* Categories Widget */
.bd-blog-cat {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bd-blog-cat li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.88rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bd-blog-cat li:last-child a {
    border-bottom: none;
}
.bd-blog-cat li a:hover {
    color: var(--secondary, #F9312F);
    padding-left: 4px;
}
.bd-blog-cat li a i {
    color: var(--secondary, #F9312F);
    font-size: 0.7rem;
    margin-right: 8px;
}
.bd-blog-cat li a span {
    margin-left: auto;
    font-size: 0.78rem;
    color: #999;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Tags Cloud */
.bd-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bd-sidebar-tag {
    display: inline-block;
    padding: 5px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.bd-sidebar-tag:hover {
    background: var(--secondary, #F9312F);
    color: #fff;
    border-color: var(--secondary, #F9312F);
}

/* Sidebar CTA */
.bd-sidebar-cta {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    text-align: center;
    padding: 32px 24px;
}
.bd-sidebar-cta h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.bd-sidebar-cta p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

/* Blockquote Enhanced */
.bd-article-body blockquote,
.bd-article-body .bd-pullquote {
    margin: 32px 0;
    padding: 28px 32px;
    border-left: 4px solid var(--secondary, #F9312F);
    background: rgba(249,49,47,0.03);
    border-radius: 0 12px 12px 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    position: relative;
}
.bd-article-body blockquote::before,
.bd-article-body .bd-pullquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: rgba(249,49,47,0.15);
    position: absolute;
    top: 16px;
    right: 24px;
}
.bd-article-body blockquote footer,
.bd-article-body blockquote cite,
.bd-article-body .bd-pullquote footer {
    display: block;
    margin-top: 14px;
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 600;
    color: #333;
}

/* Two-Column Content Layout */
.bd-two-col {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 28px 0;
}
.bd-two-col .bd-two-col-img {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
}
.bd-two-col .bd-two-col-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.bd-two-col .bd-two-col-text {
    flex: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .bd-post-navigation {
        flex-direction: column;
        gap: 12px;
    }
    .bd-nav-prev,
    .bd-nav-next {
        max-width: 100%;
    }
    .bd-nav-next {
        text-align: left;
    }
    .bd-two-col {
        flex-direction: column;
    }
    .bd-two-col .bd-two-col-img {
        flex: none;
        width: 100%;
    }
}
