/* ==========================================================================
   360CE General Content Page Styles
   Matches Wengty template design language — colours, fonts, spacing.
   ========================================================================== */

/* ── Content Page Body ── */
.content-page-section {
    background-color: #fff;
}

.content-page-section .content-page-title {
    font-family: "Roboto Condensed", "Roboto", sans-serif !important;
    font-weight: 700 !important;
    font-size: 34px !important;
    color: #96c93d !important;
    margin-bottom: 25px !important;
    line-height: 1.3 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.content-page-body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.content-page-body h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-page-body h3 {
    font-family: "Roboto", sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    color: #96c93d !important;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-page-body h4 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-page-body p {
    margin-bottom: 18px;
}

.content-page-body img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 3px;
}

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

.content-page-body ul li,
.content-page-body ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-page-body ul li::marker {
    color: #96c93d;
}

.content-page-body blockquote {
    border-left: 4px solid #96c93d;
    padding: 20px 25px;
    margin: 25px 0;
    background: #f9f9f9;
    font-style: italic;
    font-size: 16px;
    color: #555;
}

.content-page-body blockquote p:last-child {
    margin-bottom: 0;
}

.content-page-body a {
    color: #96c93d;
    font-weight: 500;
    transition: color 0.3s;
}

.content-page-body a:hover {
    color: #7db32e;
    text-decoration: underline;
}

.content-page-body .wp-block-image {
    margin: 25px 0;
}

.content-page-body .wp-block-image figcaption {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: 8px;
}

/* Full width variant */
.content-fullwidth {
    max-width: 860px;
    margin: 0 auto;
}


/* ── Sidebar ── */
.content-page-sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    background: #f9f9f9;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 3px;
}

.sidebar-widget h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #96c93d;
    position: relative;
}

/* ── Contact Sidebar Widget ── */
.sidebar-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.sidebar-contact ul li i {
    color: #96c93d;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.sidebar-contact ul li a {
    color: #666;
    transition: color 0.3s;
}

.sidebar-contact ul li a:hover {
    color: #96c93d;
}

.sidebar-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

/* ── Sectors Nav Widget ── */
.sector-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-nav li {
    border-bottom: 1px solid #eee;
}

.sector-nav li:last-child {
    border-bottom: none;
}

.sector-nav li a {
    display: block;
    padding: 12px 0;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    padding-left: 18px;
}

.sector-nav li a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #96c93d;
    transition: left 0.3s;
}

.sector-nav li a:hover {
    color: #96c93d;
    text-decoration: none;
}

.sector-nav li a:hover::before {
    color: #7db32e;
}

.sector-nav li.current-page a {
    color: #96c93d;
    font-weight: 700;
}

.sector-nav li.current-page a::before {
    width: 20px;
}

/* ── Recent Projects Sidebar Widget ── */
.sidebar-project-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-project-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-project-thumb {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 3px;
}

.sidebar-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-project-item:hover .sidebar-project-thumb img {
    transform: scale(1.08);
}

.sidebar-project-info h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #222;
    margin: 0 0 4px;
    line-height: 1.4;
}

.sidebar-project-info h5 a {
    color: #222;
    transition: color 0.3s;
}

.sidebar-project-info h5 a:hover {
    color: #96c93d;
    text-decoration: none;
}

.sidebar-project-sector {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #96c93d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ── Project Detail Page Extras ── */
.project-info-widget {
    background: #222;
    color: #ddd;
    padding: 35px;
    border-radius: 3px;
}

.project-info-widget h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #96c93d;
}

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

.project-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.project-info-list li:last-child {
    border-bottom: none;
}

.project-info-list li strong {
    color: #96c93d;
    font-weight: 600;
    display: inline-block;
    min-width: 100px;
}

.project-block {
    padding-top: 15px;
}

.project-block h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #96c93d;
    display: inline-block;
}

.related-projects-widget {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 3px;
}

.related-projects-widget h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #96c93d;
}

.related-project-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    transition: color 0.3s;
}

.related-project-item a:hover {
    color: #96c93d;
    text-decoration: none;
}

.related-project-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 3px;
}

.related-project-item h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}


/* ── Project Archive Grid Equal Height ── */
.project-grid{
    display: flex;
    flex-wrap: wrap;
}
.project-grid > [class*="col-"]{
    display: flex;
    margin-bottom: 30px;
}
.project-grid .project-item{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.project-grid .project-thumb img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.project-grid .project-details{
    flex-grow: 1;
    display: flex;
    align-items: center;
}


/* ── Project Archive Filter ── */
.project-filter {
    margin-bottom: 30px;
}

.filter-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 0 4px 8px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #96c93d;
    border-color: #96c93d;
    color: #222;
}


/* ── Featured Image ── */
.content-featured-image {
    margin-bottom: 30px;
    border-radius: 3px;
    overflow: hidden;
    max-height: 350px !important;
}

.content-featured-image img {
    margin: 0;
    border-radius: 3px;
    display: block;
    width: 100%;
    height: auto;
}

.featured-image-caption {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    font-style: italic;
}


/* ── Page Gallery ── */
.content-gallery {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.content-gallery h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #96c93d;
    display: inline-block;
}

.gallery-grid {
    margin: 0 -8px;
}

.gallery-item {
    padding: 8px;
    margin-bottom: 16px;
}

.gallery-link {
    display: block;
    text-decoration: none;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #f5f5f5;
}

.gallery-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 3px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-link:hover .gallery-thumb img {
    transform: scale(1.06);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(250, 183, 2, 0.85);
    border-radius: 50%;
}

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

.gallery-caption {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.4;
}


/* ── Contact Page ── */
.contact-page {
    background: #fff;
}

.contact-intro {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form-wrap {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 3px;
}

.contact-details-wrap {
    padding-left: 20px;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #96c93d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.contact-detail-info h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
}

.contact-detail-info p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2px;
}

.contact-detail-info a {
    color: #96c93d;
    font-weight: 600;
}

.contact-detail-info a:hover {
    color: #7db32e;
}

/* Map */
.contact-map-section {
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.form-placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #999;
    padding: 40px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 3px;
}


/* ── WPForms Global Styling ── */
.wpforms-container .wpforms-form .wpforms-field-label {
    font-family: "Roboto", sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #333 !important;
}

.wpforms-container .wpforms-form .wpforms-field {
    padding: 10px 0 !important;
}

.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form input[type="number"],
.wpforms-container .wpforms-form input[type="url"],
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 3px !important;
    background: #fff !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease !important;
}

.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form textarea:focus,
.wpforms-container .wpforms-form select:focus {
    border-color: #96c93d !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(150, 201, 61, 0.15) !important;
}

.wpforms-container .wpforms-form .wpforms-field-medium,
.wpforms-container .wpforms-form .wpforms-field-large,
.wpforms-container .wpforms-form .wpforms-field-small {
    max-width: 100% !important;
    width: 100% !important;
}

/* Ensure all inputs stretch to container width */
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form input[type="number"],
.wpforms-container .wpforms-form input[type="url"],
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.wpforms-container .wpforms-form button[type="submit"],
.wpforms-container .wpforms-form .wpforms-submit {
    background-color: #96c93d !important;
    color: #fff !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 14px 35px !important;
    border: none !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.wpforms-container .wpforms-form button[type="submit"]:hover,
.wpforms-container .wpforms-form .wpforms-submit:hover {
    background-color: #7db32e !important;
}

/* WPForms in callback CTA - submit full width + layout fixes */
.callout-section .wpforms-container .wpforms-form button[type="submit"] {
    width: 100% !important;
}

.callout-section .wpforms-container .wpforms-form .wpforms-field-row {
    display: flex !important;
    gap: 15px !important;
}

.callout-section .wpforms-container .wpforms-form .wpforms-field-row .wpforms-one-half {
    flex: 1 !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

/* Fix all half-width WPForms fields globally */
.wpforms-container .wpforms-form .wpforms-one-half {
    width: 48% !important;
}

.wpforms-container .wpforms-form .wpforms-field-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4% !important;
}

.wpforms-container .wpforms-form .wpforms-field-row .wpforms-one-half {
    flex: 0 0 48% !important;
    width: 48% !important;
    padding: 0 !important;
    float: none !important;
}

/* Select dropdowns full width */
.wpforms-container .wpforms-form select {
    width: 100% !important;
    max-width: 100% !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    padding-right: 40px !important;
}


/* ── Testimonials Page ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 3px;
    border-left: 4px solid #96c93d;
    display: flex;
    flex-direction: column;
}

.testimonial-card-quote {
    flex-grow: 1;
    position: relative;
    padding-top: 10px;
}

.testimonial-quote-icon {
    color: #96c93d;
    font-size: 28px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.6;
}

.testimonial-card-quote p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.testimonial-card-author {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.testimonial-role {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.testimonial-company {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #96c93d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* Homepage carousel quote icon */
.testi-quote-icon {
    color: #96c93d;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.5;
}

/* Content page intro text */
.content-page-intro {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Project sector label */
.project-sector-label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #96c93d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}


/* ── Callback CTA Section (Modern) ── */
.callout-section {
    background: #222;
    position: relative;
}

.callout-section .section-heading span {
    color: #96c93d;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.callout-section .section-heading h2 {
    color: #fff;
    font-size: 28px;
}

.callout-section .section-heading p {
    color: rgba(255,255,255,0.5);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

.callout-section .callout-form {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
}

.callout-section .callout-form .section-heading span {
    color: #96c93d;
}

.callout-section .callout-form .section-heading h2 {
    color: #222;
}

.callout-section .callout-form .section-heading p {
    color: #666;
}

.callout-info-modern {
    background: #222;
    border-radius: 5px;
    padding: 35px;
}

.callout-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

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

.callout-info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(150, 201, 61, 0.15);
    color: #96c93d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
}

.callout-info-item h4 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 3px;
}

.callout-info-item p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}

.callout-info-item a {
    color: #96c93d;
}

.callout-info-item a:hover {
    color: #7db32e;
}


/* ── Footer (Parallax Reveal) ── */
.footer-section {
    background: #111;
    color: rgba(255,255,255,0.65);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 10;
    background: #fff;
}

/* Spacer to push content above the fixed footer */
.footer-spacer {
    height: 1px; /* will be set by JS */
    position: relative;
    z-index: 10;
    background: transparent;
}

/* Shadow on bottom of main content for reveal depth */
.callout-section {
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
}

.sponsor-section {
    position: relative;
    z-index: 10;
    background: #fff;
}

.footer-top {
    padding: 60px 0 30px;
}

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

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-about {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #96c93d;
    color: #fff;
}

.footer-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #96c93d;
}

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

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

.footer-links li a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #96c93d;
    text-decoration: none;
}

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

.footer-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-posts a {
    display: block;
    text-decoration: none;
}

.footer-post-title {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-posts a:hover .footer-post-title {
    color: #96c93d;
}

.footer-post-date {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 3px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.footer-contact li i {
    color: #96c93d;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
    min-width: 16px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.55);
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #96c93d;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.copyright {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #96c93d;
}


/* ── Responsive Tweaks ── */
@media (max-width: 991px) {
    .content-page-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .content-fullwidth {
        max-width: 100%;
    }
}

/* ── Section Intro ── */
.section-intro {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    max-width: 700px;
    margin-top: 10px;
}

/* ── Pagination ── */
.pagination-wrap {
    padding: 20px 0;
}

.pagination-wrap .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
}

.pagination-wrap .page-numbers:hover {
    background: #96c93d;
    border-color: #96c93d;
    color: #fff;
}

.pagination-wrap .page-numbers.current {
    background: #96c93d;
    border-color: #96c93d;
    color: #fff;
}

.pagination-wrap .page-numbers.dots {
    border: none;
    background: none;
}

/* ── SlickNav mobile menu improvements ── */
.slicknav_menu {
    background: #222 !important;
    padding: 0 !important;
}

.slicknav_nav {
    background: #222 !important;
}

.slicknav_nav a {
    padding: 12px 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    font-family: "Roboto", sans-serif !important;
    font-size: 14px !important;
    color: #fff !important;
}

.slicknav_nav a:hover {
    background: #96c93d !important;
    color: #222 !important;
    border-radius: 0 !important;
}

.slicknav_nav .slicknav_row {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.slicknav_nav .slicknav_row:hover {
    background: transparent !important;
    border-radius: 0 !important;
}

.slicknav_nav .slicknav_row > a {
    flex: 1 !important;
    padding: 12px 15px !important;
    display: block !important;
}

.slicknav_nav .slicknav_row > a:hover {
    background: #96c93d !important;
    color: #222 !important;
}

.slicknav_nav .slicknav_arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    margin: 0 !important;
    font-size: 14px !important;
    background: rgba(255,255,255,0.05) !important;
    border-left: 1px solid rgba(255,255,255,0.08) !important;
    cursor: pointer !important;
    min-width: 50px !important;
}

.slicknav_nav .slicknav_arrow:hover {
    background: rgba(150,201,61,0.3) !important;
}

.slicknav_nav .slicknav_item {
    padding: 0 !important;
    margin: 0 !important;
}

.slicknav_nav .slicknav_item a {
    border-bottom: none !important;
}

.slicknav_nav ul {
    margin: 0 !important;
    background: rgba(255,255,255,0.03) !important;
}

.slicknav_nav ul a {
    padding-left: 30px !important;
    font-size: 13px !important;
}

.slicknav_btn {
    background: #96c93d !important;
    border-radius: 3px !important;
    margin: 8px !important;
    padding: 8px 10px !important;
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #fff !important;
}

@media (max-width: 767px) {
    .content-page-body h2 {
        font-size: 24px;
    }
    
    .content-page-body h3 {
        font-size: 20px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
    
    .project-info-widget {
        padding: 25px;
    }

    .gallery-thumb img {
        height: 160px;
    }

    .gallery-item {
        padding: 4px;
        margin-bottom: 8px;
    }

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

    .testimonial-card {
        padding: 25px;
    }

    .contact-details-wrap {
        padding-left: 0;
        margin-top: 30px;
    }

    .contact-form-wrap {
        padding: 25px;
    }

    .contact-map iframe {
        height: 300px;
    }

    .callout-info-modern {
        margin-top: 30px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-section {
        position: relative;
    }

    .footer-spacer {
        display: none;
    }

    /* Mobile form field stacking */
    .wpforms-container .wpforms-form .wpforms-field-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .wpforms-container .wpforms-form .wpforms-one-half,
    .wpforms-container .wpforms-form .wpforms-field-row .wpforms-one-half,
    .wpforms-container .wpforms-form .wpforms-field-name .wpforms-field-row .wpforms-one-half {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 10px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        float: none !important;
    }

    .wpforms-container .wpforms-form .wpforms-field,
    .wpforms-container .wpforms-form .wpforms-field-medium,
    .wpforms-container .wpforms-form .wpforms-field-large,
    .wpforms-container .wpforms-form .wpforms-field-small {
        max-width: 100% !important;
        width: 100% !important;
    }

    .wpforms-container .wpforms-form input[type="text"],
    .wpforms-container .wpforms-form input[type="email"],
    .wpforms-container .wpforms-form input[type="tel"],
    .wpforms-container .wpforms-form input[type="number"],
    .wpforms-container .wpforms-form input[type="url"],
    .wpforms-container .wpforms-form select,
    .wpforms-container .wpforms-form textarea {
        font-size: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Mobile menu parent link fix */
    .slicknav_nav li a {
        display: inline-block !important;
        padding: 10px 15px !important;
        width: auto !important;
    }

    .slicknav_nav .slicknav_row,
    .slicknav_nav .slicknav_parent-link {
        display: flex !important;
        align-items: center !important;
    }

    .slicknav_nav .slicknav_row > a,
    .slicknav_nav .slicknav_parent-link > a {
        flex: 1 !important;
    }

    .slicknav_nav .slicknav_arrow {
        padding: 10px 15px !important;
        cursor: pointer !important;
    }

    .project-filter {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .project-filter .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}
