*:not(i){
    font-family: "Segoe UI" !important;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

.secondary-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.neumorphic-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--light-bg);
    color: var(--secondary-color);
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: var(--shadow-light), var(--shadow-dark);
    transition: var(--transition);
    margin-top: 15px;
}

.neumorphic-btn:hover {
    box-shadow: inset -2px -2px 5px rgba(255, 255, 255, 0.7),
        inset 2px 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.full-container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.container {
    max-width: 1265px;
    padding: 0 15px;
    margin: 0 auto;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 150px;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    margin-bottom: 0;
}

.menu li {
    margin-left: 30px;
}

.menu li a {
    font-weight: 600;
    position: relative;
}

.menu li a:hover,
.menu li.active a {
    color: var(--primary-color);
}

.menu li a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu li a:hover:before,
.menu li.active a:before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

.quick-links ul {
    padding-left: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: calc(100vh - 80px);
    background-image: url(http://dananghouse.nrglobal.top/wp-content/uploads/2025/08/design-7.jpg);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    box-sizing: border-box;
}

.hero {
    padding: 150px 0 80px;
    background-color: var(--light-bg);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-light), var(--shadow-dark);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
/* .services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light), var(--shadow-dark);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
} */

.services-section {
    width: 100%;
    padding: 30px 0;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Spacing between cards */
    justify-content: center;
}

.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    flex-grow: 1;
    /* Allow cards to grow */
    min-width: 250px;
    aspect-ratio: 453 / 300;
    height: auto;
}

.service-card:hover {
    transform: translateY(-5px);
    /* Slight lift effect on hover */
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-in-out;
    /* Smooth zoom transition */
}

.service-card:hover .card-image {
    transform: scale(1.08);
    /* Zoom-in effect */
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Initial dark gradient overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background 0.4s ease-in-out;
    /* Smooth gradient change */
}

.service-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.6);
    /* Darker gradient on hover */
}

.card-title {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Add text shadow for readability */
    line-height: 1.2;
}

/* Responsive behavior */

/* Mobile: 1 card per row */
@media (max-width: 767px) {
    .service-card {
        flex-basis: 100%;
        /* Full width */
        max-width: 400px;
        /* Limit max width on mobile for better aesthetics */
    }
}

/* Tablet: 2 cards per row */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-card {
        flex-basis: calc(50% - 10px);
        /* 2 cards per row with gap */
    }
}

/* Desktop: 4 cards per row */
@media (min-width: 1024px) {
    .service-card {
        flex-basis: calc(25% - 15px);
        /* 4 cards per row with gap */
    }
}

/* About Section */
/* .about {
    background-color: var(--light-bg);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light), var(--shadow-dark);
}

.about-content p {
    margin-bottom: 20px;
} */

.about-section {
    padding: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    /* Allows columns to wrap on smaller screens */
    gap: 40px;
    /* Spacing between columns */
    align-items: center;
    /* Vertically center content */
}

.about-text-column {
    flex: 1;
    /* Allows column to grow and shrink */
    min-width: 300px;
    /* Minimum width before wrapping */
    text-align: left;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    /* Large font size for title */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    /* Dark brown color from the image */
    margin-bottom: 20px;
    line-height: 1.1;
}

.description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    /* Border color matching title */
    color: #5c4a40;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    font-size: 1em;
}

.cta-button:hover {
    background-color: #5c4a40;
    /* Darken background on hover */
    color: #fff;
    transform: scale(1.02);
    /* Slightly scale up on hover */
}

.about-image-column {
    flex: 1;
    /* Allows column to grow and shrink */
    min-width: 300px;
    /* Minimum width before wrapping */
    display: flex;
    /* Use flex to center image if it doesn't fill the column */
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    display: block;
    /* Removes extra space below image */
    border-radius: 10px;
    /* Slight border-radius */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* Soft shadow */
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .about-content {
        flex-direction: column;
        /* Stack columns vertically */
        gap: 30px;
        /* Adjust gap for stacked layout */
    }

    .about-text-column,
    .about-image-column {
        flex-basis: 100%;
        /* Full width for both columns */
        min-width: unset;
        /* Remove min-width constraint */
    }

    .section-title {
        font-size: 2.5em;
        /* Adjust title size for mobile */
        text-align: center;
        /* Center title on mobile */
    }

    .description {
        text-align: center;
        /* Center description on mobile */
    }

    .cta-button {
        margin: 0 auto;
        /* Center button on mobile */
    }
}

/* Tablet responsiveness (optional, if specific adjustments needed beyond general flex-wrap) */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-content {
        gap: 30px;
    }

    .about-text-column,
    .about-image-column {
        flex-basis: calc(50% - 15px);
        /* Adjust for 2 columns with gap */
    }
}

/* Projects Section */
/* .projects {
    background-color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light), var(--shadow-dark);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 160, 30, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.project-overlay h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.view-project {
    color: var(--white);
    font-weight: 600;
    border-bottom: 2px solid var(--white);
    padding-bottom: 5px;
}

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

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-all-projects {
    text-align: center;
    margin-top: 50px;
} */

.projects-section {
    padding: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align items to the start of the cross axis */
}

.projects-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.project-category {
    display: flex;
    flex-wrap: wrap;
    /* Allows columns to wrap on smaller screens */
    gap: 40px;
    /* Spacing between text and image grid */
    margin-bottom: 40px;
    /* Spacing between project categories */
    align-items: center;
    /* Vertically center content within the category */
}

/* Specific order for design projects (text left, images right) */
.design-projects {
    flex-direction: row;
}

/* Specific order for construction projects (text right, images left) */
.construction-projects {
    flex-direction: row-reverse;
}

.project-text-content {
    flex: 1;
    /* Allows text column to grow and shrink */
    min-width: 300px;
    /* Minimum width before wrapping */
    text-align: left;
    padding: 0px;
    /* Add some padding around text */
}

.project-image-grid {
    flex: 2;
    /* Image grid takes more space */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns for desktop */
    gap: 15px;
    /* Spacing between images */
    min-width: 300px;
    /* Minimum width before wrapping */
}

.project-image-grid img {
    width: 100%;
    height: auto;
    /* Fixed height for images */
    object-fit: cover;
    /* Ensure images cover the area */
    aspect-ratio: 1;
    display: block;
    border-radius: 8px;
    /* Slight border-radius for images */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
}

/* Responsive behavior */
/* Mobile: Stack sections vertically, 1 column for image grid */
@media (max-width: 767px) {
    .section-title {
        font-size: 2.2em;
        /* Adjust title size for mobile */
        text-align: center;
        /* Center title on mobile */
    }

    .description {
        text-align: center;
        /* Center description on mobile */
    }

    .cta-button {
        margin: 0 auto;
        /* Center button on mobile */
    }

    .project-category {
        flex-direction: column;
        /* Stack columns vertically */
        gap: 30px;
        /* Adjust gap for stacked layout */
        margin-bottom: 60px;
    }

    .project-text-content,
    .project-image-grid {
        flex-basis: 100%;
        /* Full width for both columns */
        min-width: unset;
        /* Remove min-width constraint */
    }

    .project-image-grid {
        grid-template-columns: 1fr;
        /* Single column for images on mobile */
    }

    .project-image-grid img {
        height: auto;
        /* Slightly taller images on mobile */
    }
}

/* Tablet: 2 columns for image grid */
@media (min-width: 768px) and (max-width: 1023px) {
    .project-category {
        gap: 30px;
    }

    .project-text-content {
        flex-basis: calc(40% - 15px);
        /* Adjust text column width */
    }

    .project-image-grid {
        flex-basis: calc(60% - 15px);
        /* Adjust image grid width */
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for images on tablet */
    }

    .project-image-grid img {
        height: auto;
        /* Adjust image height for tablet */
    }
}

/* Process Section */
.process {
    background-color: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light), var(--shadow-dark);
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(243, 160, 30, 0.2);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: #1e1e1e;
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.client-name h4 {
    margin-bottom: 5px;
}

.rating {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light), var(--shadow-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: var(--light-bg);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    max-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--light-bg);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

.quick-links h3 {
    margin-bottom: 20px;
}

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

.quick-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

footer .map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light), var(--shadow-dark);
    min-height: unset;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .hero .container,
    .about .container,
    .contact .container,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        order: 1;
        text-align: center;
        margin: 0 auto;
    }

    .hero-image {
        order: 0;
        margin-bottom: 30px;
    }

    .about-content {
        order: 1;
    }

    .about-image {
        order: 0;
        margin-bottom: 30px;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    section {
        padding: 15px 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

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

/* Archive Page, Blog Page  */
#primary {
    margin-top: 86px;
}

.blog-wrap {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--dark-gray);
    background: var(--white);
    padding: 1rem 0;
}

/* Two-column page layout: main + sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    /* mobile: stack */
    gap: 1rem;
}

@media (min-width: 1024px) {
    .blog-layout {
        grid-template-columns: 2.5fr 1fr;
        /* desktop: sidebar visible */
        align-items: start;
    }
}

/* Posts grid (1 / 2 / 3 columns) */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* mobile */
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.blog-card__media {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    line-height: 0;
    /* removes gap under images */
}

.media-wrap {
    position: relative;
}

.blog-card__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    /* keeps consistent height across cards */
    object-fit: cover;
    border-radius: var(--radius);
}

.blog-card__image.no-thumb {
    background: linear-gradient(180deg, #e9ecef, #dfe3e8);
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
}

/* Date badge: top-left, white text on #f7981d */
.date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 6px 10px;
    border-radius: 999px;
    line-height: 1;
    box-shadow: 0 2px 6px rgb(0 0 0 / 12%);
}

/* Category overlay: bottom with semi-transparent dark bg */
.category-badge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    background: rgb(0 0 0 / 55%);
    color: var(--white);
    display: flex;
    align-items: center;
    min-height: 42px;
}

.category-badge a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Card body */
.blog-card__body {
    padding: 0.75rem 0.25rem 0;
}

.blog-card__title {
    font-weight: 800;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    line-height: 1.25;
    margin: 0.5rem 0 0.25rem;
    color: #000;
    /* explicit bold black as requested */
}

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

.blog-card__title a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-card__excerpt {
    color: var(--mid-gray);
    /* #666 */
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
}

.blog-card__readmore {
    display: inline-block;
    color: var(--primary-color);
    /* #f7981d */
    font-weight: 600;
    text-decoration: none;
}

.blog-card__readmore:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Pagination */
.blog-pagination {
    margin-top: 1.5rem;
}

.blog-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-item .page-link {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: #ececec;
    /* light gray for inactive */
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.blog-pagination .page-item.active .page-link,
.blog-pagination .page-item .page-link.current {
    background: var(--primary-color);
    /* active page orange */
    color: var(--white);
}

/* Sidebar */
.blog-sidebar {
    display: grid;
    gap: 1.5rem;
}

/* Sidebar sections */
.sidebar-section {
    background: var(--white);
}

.sidebar-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0 0 0.75rem;
}

/* Search box */
.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    background: var(--white);
    border-radius: 999px;
    padding: 6px;
    border: 1px solid #eee;
}

.search-input {
    border: none;
    outline: none;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    font-size: 0.95rem;
    background: var(--white);
}

.search-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 0 1rem;
    font-weight: 700;
    cursor: pointer;
}

.search-btn:hover {
    filter: brightness(0.95);
}

/* Categories list */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.category-list a {
    display: inline-block;
    padding: 6px 8px;
    border-radius: 8px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color .15s, background .15s;
}

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

/* Latest posts */
.latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.latest-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.latest-link {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: var(--dark-gray);
}

.latest-thumb img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.thumb-fallback {
    width: 64px;
    height: 64px;
    background: #e2e6ea;
    border-radius: 8px;
    display: inline-block;
}

.latest-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.latest-link:hover .latest-title {
    color: var(--primary-color);
}

/* Accessibility helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Archive header */
.archive-header {
    margin-bottom: 1rem;
}

.archive-title {
    font-size: clamp(1.25rem, 1.1rem + 1vw, 1.75rem);
    font-weight: 800;
}

.archive-description {
    color: var(--mid-gray);
    margin-top: 0.25rem;
}

/* Ẩn menu con mặc định */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Style item trong menu con */
.sub-menu li {
    border-bottom: 1px solid #eee;
    margin: 0;
}

.sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.sub-menu li a:hover {
    background: #f5f5f5;
}

/* Khi hover menu cha thì hiển thị menu con */
.menu-item-has-children:hover>.sub-menu {
    display: block;
}

/* Menu cha phải để relative để menu con định vị được */
.menu-item-has-children {
    position: relative;
}

/* Đảm bảo menu ngang */
.main-menu>li {
    display: inline-block;
    position: relative;
}

.menu-item-has-children>a::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    /* icon chevron-down */
    margin-left: 6px;
}

/* Khi hover thì xoay mũi tên */
.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* Construction Banner Slider Styles with Swiper.js */
.construction-banner-slider {
    position: relative;
    width: 100%;
    height: auto;
    /* min-height: 600px; */
    aspect-ratio: 1905/633;
    overflow: hidden;
    background: #2a2a2a;
    margin-top: 80px;
}

.construction-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-background {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #f3a01e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.slide-description {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: #f3a01e;
    color: white;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 160, 30, 0.3);
}

.cta-button:hover {
    background: #e8940d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 160, 30, 0.4);
    color: white;
    text-decoration: none;
}

/* Custom Swiper navigation styling */
.construction-nav-next,
.construction-nav-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 0 !important;
}

.construction-nav-next:hover,
.construction-nav-prev:hover {
    background: #f3a01e !important;
    border-color: #f3a01e;
    transform: translateY(-50%) scale(1.1);
}

.construction-nav-next:after,
.construction-nav-prev:after {
    display: none;
}

.construction-nav-prev {
    left: 30px;
}

.construction-nav-next {
    right: 30px;
}

/* Custom Swiper pagination styling */
.construction-pagination {
    bottom: 30px !important;
    text-align: center;
}

.construction-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    background: transparent !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.construction-pagination .swiper-pagination-bullet-active,
.construction-pagination .swiper-pagination-bullet:hover {
    background: #f3a01e !important;
    border-color: #f3a01e !important;
}

/* Custom Swiper scrollbar styling */
.construction-scrollbar {
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    z-index: 3;
}

.construction-scrollbar .swiper-scrollbar-drag {
    background: #f3a01e !important;
    height: 100% !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-banner-slider {
        /* min-height: 500px; */
    }

    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .construction-nav-next,
    .construction-nav-prev {
        width: 50px !important;
        height: 50px !important;
    }

    .construction-nav-prev {
        left: 20px;
    }

    .construction-nav-next {
        right: 20px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    /* padding: 80px 5%; */
    background-color: #fff;
}

.testimonials-section .inner {
    text-align: center;
}

.testimonials-section .swiper-wrapper {
    padding-bottom: 40px;
}

.testimonials-header {
    margin-bottom: 30px;
}

.testimonials-subtitle {
    font-family: "Lato", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    /* Light gray */
    margin-bottom: 10px;
}

.testimonials-main-heading {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin: 0;
}

.testimonial-slide {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    color: #333;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
    /* Hides any overflowing content */
    text-overflow: ellipsis;
    /* Displays an ellipsis (...) for truncated text */
    display: -webkit-box;
    /* Enables the flexible box layout model */
    -webkit-line-clamp: 3;
    /* Limits the text to 3 lines */
    -webkit-box-orient: vertical;
    /* Stacks the content vertically */
    line-clamp: 3;
    /* Add some horizontal padding for smaller screens */
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.client-info a,
.client-info a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    position: relative;
}

.client-info a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><polygon points='25,18 25,46 46,32'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    pointer-events: none;
}

.client-info a:hover::after {
    transform: translate(-50%, -50%) scale(1.15);
    /* background: rgba(0,0,0,0.8); */
    animation: pulsePlay 1.5s ease-in-out infinite;
}

/* Keyframe cho pulse */
@keyframes pulsePlay {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
}

.client-profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-details {
    font-family: "Open Sans", sans-serif;
    color: #666;
    font-size: 0.95rem;
}

.client-name {
    font-weight: 600;
    margin: 0;
}

.review-date {
    margin: 0;
    font-size: 0.85rem;
}

.testimonial-divider {
    width: 80px;
    height: 1px;
    background-color: #dcc6c2;
    /* Soft blush pink */
    margin-top: 15px;
}

/* Màu mặc định của bullet */
.testimonials-section .swiper-pagination-bullet {
    background-color: rgba(68, 203, 136, 0.4);
    /* Màu xanh nhạt khi chưa active */
    opacity: 1;
    /* Giữ nguyên màu, không mờ */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Bullet đang active */
.testimonials-section .swiper-pagination-bullet-active {
    background-color: #44CB88;
    /* Màu xanh chính */
    transform: scale(1.2);
    /* Phóng to nhẹ khi active */
}

.btn-read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #44CB88;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-read-more:hover {
    background-color: #37a971;
    /* Màu hover đậm hơn */
    transform: translateY(-2px);
    /* Hiệu ứng nhấc nhẹ */
}

/* Responsive adjustments for Testimonials section */
@media (max-width: 1024px) {
    .testimonials-main-heading {
        font-size: 2.8rem;
    }

    .testimonial-quote {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .testimonials-main-heading {
        font-size: 2.2rem;
    }

    .testimonial-quote {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .client-profile-pic {
        width: 70px;
        height: 70px;
    }

    .client-details {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-main-heading {
        font-size: 1.8rem;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .client-profile-pic {
        width: 60px;
        height: 60px;
    }

    .client-details {
        font-size: 0.8rem;
    }

    .testimonial-divider {
        margin-top: 30px;
    }
}

/* Archive  Testimonial  */

/* Testimonials Archive Styles */
.testimonials-archive {
    padding: 60px 0;
    background: #ffffff;
    padding-top: 100px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: #222222;
    margin: 0;
    position: relative;
    display: inline-block;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #44CB88;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

/* Testimonial Item Styles */
.post-type-archive-testimonial .testimonial-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-type-archive-testimonial .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.post-type-archive-testimonial .testimonial-video {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.post-type-archive-testimonial .testimonial-video iframe,
.post-type-archive-testimonial .testimonial-video video,
.post-type-archive-testimonial .testimonial-video img {
    width: 100%;
    height: auto;
    display: block;
}

.post-type-archive-testimonial .testimonial-quote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    position: relative;
}

.post-type-archive-testimonial .testimonial-quote::before {
    content: '"';
    font-size: 48px;
    color: #44CB88;
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.post-type-archive-testimonial .testimonial-quote::after {
    content: '"';
    font-size: 48px;
    color: #44CB88;
    position: absolute;
    bottom: -30px;
    right: 0;
    font-family: serif;
}

/* Pagination Styles */
.post-type-archive-testimonial .testimonials-pagination {
    text-align: center;
    margin-top: 40px;
}

.post-type-archive-testimonial .testimonials-pagination .page-numbers {
    display: inline-block;
    padding: 12px 16px;
    margin: 0 4px;
    background: #ffffff;
    color: #222222;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.post-type-archive-testimonial .testimonials-pagination .page-numbers:hover,
.post-type-archive-testimonial .testimonials-pagination .page-numbers.current {
    background: #44CB88;
    color: #ffffff;
    border-color: #44CB88;
}

.post-type-archive-testimonial .testimonials-pagination .page-numbers.prev,
.post-type-archive-testimonial .testimonials-pagination .page-numbers.next {
    font-weight: bold;
}

/* No Testimonials */
.post-type-archive-testimonial .no-testimonials {
    text-align: center;
    padding: 60px 20px;
}

.post-type-archive-testimonial .no-testimonials p {
    font-size: 18px;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-type-archive-testimonial .testimonials-archive {
        padding: 40px 0;
        padding-top: 90px;
    }

    .post-type-archive-testimonial .testimonials-title {
        font-size: 24px;
    }

    .post-type-archive-testimonial .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .post-type-archive-testimonial .testimonial-item {
        padding: 20px;
    }

    .post-type-archive-testimonial .testimonial-quote {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .post-type-archive-testimonial .testimonials-container {
        padding: 0 15px;
    }

    .post-type-archive-testimonial .testimonials-title {
        font-size: 20px;
    }

    .post-type-archive-testimonial .testimonials-pagination .page-numbers {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .post-type-archive-testimonial .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .post-type-archive-testimonial .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Page Styles */
.single-service .service-page {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.single-service .service-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-service .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.single-service .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-service .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.single-service .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.single-service .service-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #f3a01e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.single-service .service-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* Container */
.single-service .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Content Section */
.service-content {
    padding: 30px 0;
    background: #fff;
}

.single-service .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.single-service .content-left h2,
.single-service .content-left h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.single-service .content-left h2 {
    font-size: 2.5rem;
    color: #f3a01e;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.single-service .content-left h3 {
    font-size: 1.75rem;
    margin-top: 3rem;
}

.single-service .description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.single-service .benefits-list {
    list-style: none;
    padding: 0;
}

.single-service .benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.single-service .benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f3a01e;
    font-weight: bold;
    font-size: 1.2rem;
}

.single-service .process-steps {
    counter-reset: step-counter;
    padding-left: 0;
}

.single-service .process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
    list-style: none;
}

.single-service .process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #f3a01e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.single-service .process-steps li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.single-service .content-right {
    position: sticky;
    top: 100px;
}

.single-service .service-image,
.single-service .service-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.single-service .service-image img,
.single-service .service-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.single-service .service-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.single-service .service-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #f3a01e;
    text-transform: uppercase;
    margin-bottom: 3rem;
    font-weight: 700;
}

.single-service .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.single-service .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.single-service .gallery-item:hover {
    transform: translateY(-5px);
}

.single-service .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-service .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 160, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.single-service .gallery-item:hover img {
    transform: scale(1.1);
}

.single-service .view-icon {
    font-size: 2rem;
    color: white;
}

/* Why Choose Section */
.single-service .why-choose {
    padding: 30px 0;
    background: #fff;
}

.single-service .why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #f3a01e;
    text-transform: uppercase;
    margin-bottom: 3rem;
    font-weight: 700;
}

.single-service .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.single-service .advantage-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-service .advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.single-service .advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f3a01e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-service .advantage-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.single-service .default-icon {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.single-service .advantage-item h4 {
    font-size: 1.5rem;
    color: #f3a01e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.single-service .advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.single-service .service-cta {
    padding: 80px 0;
    background: #f3a01e;
    text-align: center;
}

.single-service .cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.single-service .cta-content p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.single-service .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.single-service .cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.single-service .cta-button.primary {
    background: white;
    color: #333;
    border-color: white;
}

.single-service .cta-button.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.single-service .cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.single-service .cta-button.secondary:hover {
    background: white;
    color: #f3a01e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-service .service-title {
        font-size: 2.5rem;
    }

    .single-service .service-tagline {
        font-size: 1.1rem;
    }

    .single-service .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-service .content-right {
        position: static;
    }

    .single-service .service-content,
    .single-service .service-gallery,
    .single-service .why-choose,
    .single-service .service-cta {
        padding: 20px 0;
    }

    .single-service .service-gallery h2,
    .single-service .why-choose h2,
    .single-service .cta-content h2 {
        font-size: 2rem;
    }

    .single-service .content-left h2 {
        font-size: 2rem;
    }

    .single-service .gallery-grid {
        grid-template-columns: 1fr;
    }

    .single-service .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .single-service .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .single-service .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .single-service .service-hero {
        height: 50vh;
        min-height: 400px;
    }

    .single-service .service-title {
        font-size: 2rem;
    }

    .single-service .container {
        padding: 0 15px;
    }

    .single-service .advantage-item {
        padding: 1.5rem;
    }
}

/* Breadcrumb */
.single-project .breadcrumb {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.single-project .breadcrumb span {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Page Title */
.single-project .page-title {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

/* Project Info */
.single-project .project-info {
    margin-bottom: 30px;
}

.single-project .project-info ul {
    list-style: none;
    max-width: 400px;
}

.single-project .project-info li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 15px;
}

.single-project .project-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

/* Description */
.single-project .description {
    margin-bottom: 40px;
}

.single-project .description p {
    line-height: 1.7;
    color: #333;
}

/* Content Layout */
.single-project .content-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

/* Featured Image */
.single-project .featured-image {
    flex: 0 0 60%;
}

.single-project .featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    background-color: #f8f8f8;
}

/* Image Grid */
.single-project .image-grid {
    flex: 0 0 40%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 5px;
    height: 500px;
}

.single-project .image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    background-color: #f8f8f8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-project .content-layout {
        flex-direction: column;
    }

    .single-project .featured-image,
    .single-project .image-grid {
        flex: none;
    }

    .single-project .image-grid {
        height: 300px;
        grid-template-rows: repeat(3, 1fr);
    }

    .single-project .page-title {
        font-size: 24px;
    }
}

/* Intro Section */
.archive .intro-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 48px;
    text-align: center;
}

.archive .intro-container p {
    margin-bottom: 24px;
    line-height: 1.7;
    color: #333;
}

/* Tagline */
.archive .tagline {
    text-align: center;
    margin-bottom: 32px;
}

.archive .tagline p {
    color: #666;
    font-style: italic;
}

/* Filter Section */
.archive .filter-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 48px;
}

.archive .filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.archive .filter-btn {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.archive .filter-btn:hover {
    background-color: #f5f5f5;
}

/* Projects Section */
.archive .projects-section {
    margin: 0 auto;
}

.archive .projects-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.archive .project-item {
    text-align: center;
    box-shadow: 0px 0px 10px 0px #f6f6f9;
    padding: 10px;
    border-radius: 5px;
}

.archive .project-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
    overflow: hidden;
}

.archive .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s;
}

.archive .project-item:hover .project-image img {
    transform: scale(1.05);
}

.archive .project-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #000;
}

.archive .project-subtitle {
    font-size: 12px;
    color: #666;
}

/* Pagination */
.archive .pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.archive .pagination-container {
    display: flex;
    gap: 8px;
}

.archive .page-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.archive .page-number.active {
    background-color: #000;
    color: #fff;
}

.archive .page-number:not(.active) {
    border: 1px solid #ccc;
    color: #333;
}

.archive .page-number:not(.active):hover {
    background-color: #f5f5f5;
}

@media screen and (max-width: 767px) {
    .archive .projects-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .archive .projects-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

.archive .breadcrumb {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

/* Header Section */
.page-template-page-contact-us .header-section {
    text-align: center;
    padding: 60px 0 40px;
    background-color: #fff;
}

.page-template-page-contact-us .header-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #F3A01E;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-template-page-contact-us .header-section p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.page-template-page-contact-us .main-content {
    padding: 40px 0 80px;
}

.page-template-page-contact-us .content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

/* Left Column */
.page-template-page-contact-us .left-column {
    /* padding-right: 20px; */
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.page-template-page-contact-us .section-heading {
    font-size: 1.8rem;
    color: #F3A01E;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-template-page-contact-us .contact-info {
    margin-bottom: 50px;
}

.page-template-page-contact-us .contact-item {
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.page-template-page-contact-us .contact-item:last-child {
    border-bottom: none;
}

.page-template-page-contact-us .contact-item strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.page-template-page-contact-us .contact-item span {
    color: #666;
    font-size: 1rem;
}

/* Contact Form */
.page-template-page-contact-us .contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.page-template-page-contact-us .form-group {
    margin-bottom: 25px;
}

.page-template-page-contact-us .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.page-template-page-contact-us .form-group input,
.page-template-page-contact-us .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.page-template-page-contact-us .form-group input:focus,
.page-template-page-contact-us .form-group textarea:focus {
    outline: none;
    border-color: #F3A01E;
}

.page-template-page-contact-us .form-group textarea {
    height: 120px;
    resize: vertical;
}

.page-template-page-contact-us .submit-btn {
    background-color: #F3A01E;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-template-page-contact-us .submit-btn:hover {
    background-color: #e8940d;
}

/* Right Column */
.page-template-page-contact-us .right-column {
    height: 100%;
    min-height: 600px;
}

.page-template-page-contact-us .main-content .map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-template-page-contact-us .main-content .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-template-page-contact-us .header-section h1 {
        font-size: 2.2rem;
    }

    .page-template-page-contact-us .header-section p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .page-template-page-contact-us .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-template-page-contact-us .left-column {
        padding-right: 0;
        grid-template-columns: 1fr;
    }

    .page-template-page-contact-us .contact-form {
        padding: 20px;
    }

    .page-template-page-contact-us .right-column {
        min-height: 400px;
    }

    .page-template-page-contact-us .main-content .map-container {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .page-template-page-contact-us .header-section {
        padding: 40px 0 30px;
    }

    .page-template-page-contact-us .header-section h1 {
        font-size: 1.8rem;
    }

    .page-template-page-contact-us .section-heading {
        font-size: 1.5rem;
    }

    .page-template-page-contact-us .contact-form {
        padding: 15px;
    }

    .page-template-page-contact-us .submit-btn {
        width: 100%;
        padding: 12px;
    }
}

.post-content .hero{
    padding: 0px !important;
}

@media screen and (max-width: 768px){
    .about-content *,
    .project-text-content *,
    .section-heading.heading-orange
    {
        text-align: start !important;
    }
    .section-heading.heading-orange{
        width: 100%;
    }
}

/* service new  */
/* Sidebar dịch vụ */
.services-sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        position: sticky;
    top: 100px;
}

.services-sidebar h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Danh sách dịch vụ */
.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-item {
    margin-bottom: 12px;
}

.service-item:last-child {
    margin-bottom: 0;
}

/* Link dịch vụ */
.service-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-item a:hover {
    background: #f0f0f0;
    color: #007bff;
}

/* Thumbnail dịch vụ */
.service-item .thumb {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 10px;
}

.service-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tiêu đề */
.service-item .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}
.wpcf7-submit{
    background-color: var(--primary-color);
    color: white;
}
.wpcf7-submit:hover{
    background-color: black;
    color: white;
}


.info-contact-service{
    border-top: 2px solid #f1f1f1;
    border-bottom: 2px solid #f1f1f1;
    padding: 20px 0px;
}
.info-contact-service p{
    border-left: 4px solid var(--primary-color);
    padding: 0px 5px;
}

.phone-bar a{
    background-color: #dd3333;
}
.menu li a{
    font-size: 18px !important;
    text-transform: uppercase;
}
@media (max-width: 768px){
    #menu-main-menu > li{
        margin-bottom: 20px;
    }
    .mobile-text-left *{
        text-align: start !important;
    }
    .featured-image img{
        height: 100% !important;
    }
}