/* =====================================================
   Carpenter – Single-Page Bootstrap Stylesheet
   Primary: #9f7356   |   Font: Instrument Sans
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #9f7356;
    --primary-dark: #7d5a42;
    --primary-light: #c49b7c;
    --dark: #2E2F38;
    --dark-bg: #222222;
    --light: #ffffff;
    --grey: #f5f5f5;
    --text: #606060;
    --text-light: #999999;
    --transition: all 0.4s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Instrument Sans", sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 600;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--light);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--primary);
    animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

/* ---------- Navbar ---------- */
.navbar-carpenter {
    background: var(--light);
    padding: 0 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    z-index: 1000;
}

.navbar-carpenter .navbar-brand img {
    height: 50px;
}

.navbar-carpenter .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 28px 18px !important;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.navbar-carpenter .nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-carpenter .nav-link:hover::after,
.navbar-carpenter .nav-link.active::after {
    width: calc(100% - 36px);
}

.navbar-carpenter .nav-link:hover,
.navbar-carpenter .nav-link.active {
    color: var(--primary) !important;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
}

.navbar-phone svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.navbar-carpenter.scrolled {
    padding: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile menu */
@media (max-width: 991.98px) {
    .navbar-carpenter .nav-link {
        padding: 12px 18px !important;
    }

    .navbar-carpenter .nav-link::after {
        display: none;
    }

    .navbar-phone {
        display: none;
    }
}

/* ---------- HERO SECTION ---------- */
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease, transform 8s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 47, 56, 0.75) 0%, rgba(46, 47, 56, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light);
    max-width: 700px;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--light);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero slider nav dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 14px;
    }
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
    padding: 13px 35px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(159, 115, 86, 0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 13px 35px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--light);
    color: var(--dark);
    border-color: var(--light);
    transform: translateY(-2px);
}

/* ---------- Section Helpers ---------- */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header .section-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -1.15px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-header .section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header .section-divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- SERVICES SECTION ---------- */
#services {
    background: var(--grey);
}

.service-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card .service-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-card .service-body {
    padding: 30px;
}

.service-card .service-body h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card .service-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ---------- ABOUT SECTION ---------- */
.about-img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-img-wrapper .offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.about-features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Counters */
.counter-box {
    text-align: center;
    padding: 30px 15px;
}

.counter-box .counter-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-box .counter-label {
    font-size: 14px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- PROJECTS SECTION ---------- */
.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(46, 47, 56, 0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h5 {
    color: var(--light);
    font-size: 18px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-overlay h5 {
    transform: translateY(0);
}

.project-overlay .btn-view {
    color: var(--primary-light);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s 0.1s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-overlay .btn-view i {
    font-size: 11px;
}

.project-card:hover .project-overlay .btn-view {
    transform: translateY(0);
}

/* border line effect like original */
.project-card::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover::before {
    opacity: 1;
}

/* ---------- LIGHTBOX / Image Popup ---------- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 36px;
    height: 36px;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    top: -45px;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .lightbox-content {
        max-width: 95vw;
    }

    .lightbox-content img {
        max-width: 95vw;
    }

    .lightbox-prev {
        left: -5px;
        top: auto;
        bottom: -50px;
    }

    .lightbox-next {
        right: -5px;
        top: auto;
        bottom: -50px;
    }

    .lightbox-close {
        top: -40px;
    }

    .lightbox-counter {
        top: -40px;
    }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-section .cta-overlay {
    background: rgba(46, 47, 56, 0.8);
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--light);
    font-weight: 600;
    letter-spacing: -1px;
}

.cta-section .btn-primary-custom {
    margin-top: 15px;
}

/* ---------- TESTIMONIALS SECTION ---------- */
#testimonials {
    background: var(--grey);
}

.testimonial-card {
    background: var(--light);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--primary);
}

/* Testimonial carousel controls */
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .carousel-indicators {
    bottom: -40px;
}

.testimonial-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
}

.testimonial-carousel .carousel-indicators button.active {
    background: var(--primary);
}

/* ---------- BLOG SECTION ---------- */
.blog-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card .blog-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--dark);
    color: var(--light);
    padding: 8px 12px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.blog-date .day {
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.blog-date .month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card .blog-body {
    padding: 25px;
}

.blog-card .blog-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card .blog-body h4 a {
    color: var(--dark);
}

.blog-card .blog-body h4 a:hover {
    color: var(--primary);
}

.blog-card .blog-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-card .blog-read-more {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.blog-card .blog-read-more:hover {
    color: var(--primary-dark);
}

/* ---------- CONTACT SECTION ---------- */

/* Contact Info Bar — horizontal strip with all 5 items */
.contact-info-bar {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    background: var(--light);
    border-radius: 12px;
    padding: 30px 35px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    flex-wrap: wrap;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.contact-info-bar:hover {
    box-shadow: var(--shadow-hover);
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 0;
    min-width: 160px;
    position: relative;
    padding-right: 15px;
}

.contact-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #e0e0e0;
}

.contact-bar-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-bar-item:hover .contact-bar-icon {
    background: var(--primary-dark);
    transform: scale(1.08) rotate(-5deg);
}

.contact-bar-item h6 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-bar-item p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Card shared styles */
.contact-form-card,
.contact-map-card {
    background: var(--light);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.contact-form-card:hover,
.contact-map-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

/* Card Header */
.contact-card-header {
    margin-bottom: 25px;
}

.contact-form-title,
.contact-map-title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-title i,
.contact-map-title i {
    color: var(--primary);
    margin-right: 8px;
}

.contact-card-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Input Icon Groups */
.input-icon-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
    transition: var(--transition);
}

.input-icon-top {
    top: 18px;
    transform: none;
}

.form-control.has-icon {
    padding-left: 42px;
}

/* Contact Form Inputs */
.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    font-family: "Instrument Sans", sans-serif;
    transition: var(--transition);
    background: #fafafa;
    color: var(--dark);
}

.contact-form .form-control::placeholder {
    color: #aaa;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(159, 115, 86, 0.12);
    outline: none;
    background: #fff;
}

.contact-form .form-control:focus+.input-icon,
.input-icon-group:focus-within .input-icon {
    color: var(--primary-dark);
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Select dropdown */
.contact-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239f7356' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px !important;
    cursor: pointer;
}

/* Submit Button */
.btn-contact-submit {
    width: 100%;
    padding: 15px 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Map Card specifics */
.map-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

/* Map Footer */
.map-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0;
    margin-top: 15px;
    border-top: 1px solid #eee;
}

.map-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
}

.map-footer-item i {
    color: var(--primary);
    font-size: 15px;
}

.map-footer-item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.map-footer-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Contact */
@media (max-width: 991.98px) {
    .contact-info-bar {
        padding: 20px 25px;
        gap: 20px;
        justify-content: center;
    }

    .contact-bar-item {
        flex: 0 0 calc(33.333% - 15px);
        min-width: 180px;
    }

    .contact-bar-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .contact-info-bar {
        flex-direction: column;
        gap: 18px;
        padding: 25px 20px;
        border-left: 3px solid var(--primary);
    }

    .contact-bar-item {
        flex: 1 1 100%;
        min-width: auto;
        padding-right: 0;
    }

    .contact-bar-item:not(:last-child)::after {
        display: none;
    }

    .contact-form-card,
    .contact-map-card {
        padding: 25px;
    }

    .map-wrapper iframe {
        height: 260px;
    }

    .map-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}


/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.7);
}

.social-icon:hover svg {
    fill: var(--light);
}

/* ---------- Back to Top ---------- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(159, 115, 86, 0.4);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .section-header .section-title {
        font-size: 32px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .counter-box .counter-number {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-header .section-title {
        font-size: 28px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 30px;
    }

    .counter-box .counter-number {
        font-size: 30px;
    }

    .cta-section h2 {
        font-size: 24px;
    }
}

/* ---------- BLOG MODAL CUSTOM STYLES ---------- */
.blog-modal-custom .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.blog-modal-custom .modal-body {
    padding: 2.5rem;
}

.blog-modal-custom .btn-close-custom {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    background: var(--light);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.blog-modal-custom .btn-close-custom:hover {
    background: var(--primary);
    color: var(--light);
    transform: rotate(90deg);
}

.blog-modal-custom .modal-img-top-wrapper {
    position: relative;
    height: 500px;
    /* High 'vertical' top size */
    overflow: hidden;
    border-radius: 12px;
}

.blog-modal-custom .modal-img-top-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.blog-modal-custom .modal-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--light);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

.blog-modal-custom .modal-title-custom {
    font-size: 28px;
    color: var(--dark);
    line-height: 1.3;
}

.blog-modal-custom .modal-divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.blog-modal-custom .modal-long-desc {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.blog-modal-custom .modal-long-desc p {
    margin-bottom: 1.2rem;
}

.blog-modal-custom .modal-long-desc p:last-child {
    margin-bottom: 0;
}

.bg-primary-light {
    background-color: rgba(159, 115, 86, 0.1) !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.blog-modal-custom .social-icons-simple a {
    transition: var(--transition);
}

.blog-modal-custom .social-icons-simple a:hover {
    color: var(--primary) !important;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .blog-modal-custom .modal-body {
        padding: 1.5rem;
    }

    .blog-modal-custom .modal-img-top-wrapper {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .blog-modal-custom .modal-dialog {
        max-width: 750px;
        /* Slimmer vertical feel */
    }
}