/* ===================================
   Global Styles & Variables
   =================================== */

:root {
    --primary-green: #27ae60;
    --secondary-green: #2ecc71;
    --dark-green: #1e8449;
    --light-green: #a9dfbf;
    --dark-gray: #2c3e50;
    --medium-gray: #34495e;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1200px !important;
}

.container-fluid {
    max-width: 1400px !important;
}


/* ===================================
   Typography
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: var(--dark-gray) !important;
}

.navbar.scrolled {
    background: var(--dark-gray) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.3rem;
}

.logo-img {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

.brand-name {
    color: var(--white);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-green) !important;
}

.nav-link.btn {
    background: var(--secondary-green);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
}

.nav-link.btn:hover {
    background: var(--primary-green);
    color: var(--white) !important;
    transform: translateY(-2px);
}
.nav-item-socials {
    display:         flex;
    align-items:     center;
    gap:             8px;
    padding-left:    12px;
    border-left:     1px solid rgba(255, 255, 255, 0.15);
    margin-left:     8px;
}

@media (max-width: 991px) {
    .nav-item-socials {
        justify-content: center;
        padding-left:    0;
        border-left:     none;
        border-top:      1px solid rgba(255, 255, 255, 0.12);
        margin-left:     0;
        margin-top:      0.5rem;
        padding-top:     0.75rem;
        width:           100%;
    }
}

/* ===================================
   Section Styles
   =================================== */

.section-padding {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.title-underline {
    width: 40px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
    margin: 0 auto 1.5rem;
}

/* ===================================
   About Section
   =================================== */

.about-card {
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

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

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    transform: rotate(360deg);
}

.about-card h5 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

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

/* ===================================
   Services Section
   =================================== */

.service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

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



/* ===================================
   Portfolio Section
   =================================== */

.portfolio-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}
#portfolio .col-lg-4,
#portfolio .col-md-6 {
    display: flex;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 204, 113, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay i {
    color: var(--white);
    font-size: 2.5rem;
}

.portfolio-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.portfolio-content h5 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Portfolio Modal */
.modal-dialog {
    max-width: 680px !important;
    margin: 1.5rem auto;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 0;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.modal-header .modal-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.85;
    width: 0.8rem;
    height: 0.8rem;
}

.modal-body {
    padding: 0;
    background: #f8f9fa;
}

.carousel-inner img {
    border-radius: 0;
    max-height: 360px;
    object-fit: cover;
    width: 100%;
}

#modalProjectDescription {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 0.9rem 1.5rem 1.2rem;
    margin: 0;
    background: #fff;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(39, 174, 96, 0.85);
    border-radius: 50%;
    padding: 16px;
    backdrop-filter: blur(4px);
}

.carousel-indicators {
    margin-bottom: 0.5rem;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.6);
    border: none;
    opacity: 1;
}

.carousel-indicators button.active {
    background-color: var(--white);
    transform: scale(1.3);
}

@media (max-width: 767px) {
    .modal-dialog {
        max-width: 95% !important;
        margin: 1rem auto;
    }

    .carousel-inner img {
        max-height: 250px;
    }
}
/* Fix carousel image fitting */
#portfolioCarousel {
    background: #000;
    line-height: 0;
}

#portfolioCarousel .carousel-inner {
    line-height: 0;
}

#portfolioCarousel .carousel-item {
    line-height: 0;
    overflow: hidden;
    height: 360px;
}

#portfolioCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    max-height: none;
}

@media (max-width: 767px) {
    #portfolioCarousel .carousel-item {
        height: 250px;
    }
}
/* Social Media Icons - Footer */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 132, 73, 0.4);
}
/* ===================================
   Reviews Section
   =================================== */

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding:  20px 0;
}

.reviews-carousel {
    display:    flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    flex:         0 0 auto;
    width:        360px;
    margin-right: 30px;
    margin-left:  0;
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: slideInReview 0.6s ease-out forwards;
}

@keyframes slideInReview {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: var(--light-green);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.2);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.review-stars i {
    color: #ffc107;
    font-size: 1.2rem;
    animation: starPulse 2s ease-in-out infinite;
}

.review-stars i:nth-child(1) {
    animation-delay: 0s;
}

.review-stars i:nth-child(2) {
    animation-delay: 0.1s;
}

.review-stars i:nth-child(3) {
    animation-delay: 0.2s;
}

.review-stars i:nth-child(4) {
    animation-delay: 0.3s;
}

.review-stars i:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.review-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover .author-avatar {
    transform: rotate(360deg) scale(1.1);
}

.author-info h6 {
    margin: 0;
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-dot.active {
    background: var(--primary-green);
    transform: scale(1.3);
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.review-dot:hover {
    background: var(--secondary-green);
    transform: scale(1.2);
}

/* Review Navigation Arrows */
.review-nav-btn {
    position:      absolute;
    top:           50%;
    transform:     translateY(-50%);
    width:         50px;
    height:        50px;
    background:    linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color:         var(--white);
    border:        none;
    border-radius: 50%;
    font-size:     1.2rem;
    cursor:        pointer;
    z-index:       10;
    opacity:       50%;
    transition:    all 0.3s ease;
    box-shadow:    0 4px 15px rgba(0, 0, 0, 0.2);
}

.review-nav-btn:hover {
    transform:  translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.review-prev { left:  0px; }
.review-next { right: 0px; }

/* ===================================
   Review CTA Section
   =================================== */

.review-cta-section {
    position:   relative;
    padding:    100px 0;
    background: url('/public/portfolio18.webp') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    color:      #fff;
}

.review-cta-overlay {
    position:   absolute;
    inset:      0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(20,50,30,0.7));
    transition: background 0.4s ease;
}

.review-cta-section:hover .review-cta-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(10,30,15,0.88));
}

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

.review-cta-title {
    font-size:     clamp(1.8rem, 4vw, 2.6rem);
    font-weight:   800;
    color:         #fff;
    margin-bottom: 0.75rem;
}

.review-cta-desc {
    font-size:  1rem;
    color:      rgba(255,255,255,0.8);
    margin:     0 auto 2rem;
    max-width:  420px;
}

.review-cta-btn {
    display:         inline-flex;
    align-items:     center;
    gap:             14px;
    background:      #fff;
    color:           var(--dark-gray);
    text-decoration: none;
    padding:         14px 28px;
    border-radius:   14px;
    border:          2px solid #fff;
    box-shadow:      0 8px 30px rgba(0,0,0,0.3);
    transition:      all 0.3s ease;
}

.review-cta-btn i {
    color:      var(--primary-green);
    font-size:  1.4rem;
    transition: color 0.3s ease;
}

.review-cta-btn .btn-text-wrap small {
    display:        block;
    font-size:      0.65rem;
    color:          var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition:     color 0.3s ease;
}

.review-cta-btn .btn-text-wrap strong {
    display:     block;
    font-size:   0.98rem;
    font-weight: 700;
    color:       var(--dark-gray);
    transition:  color 0.3s ease;
}

.review-cta-btn:hover {
    background:   var(--primary-green);
    border-color: var(--primary-green);
    transform:    translateY(-4px);
    box-shadow:   0 14px 40px rgba(39,174,96,0.4);
}

.review-cta-btn:hover i,
.review-cta-btn:hover .btn-text-wrap small,
.review-cta-btn:hover .btn-text-wrap strong {
    color: #fff;
}

@media (max-width: 767px) {
    .review-cta-section {
        padding: 70px 0;
        background-attachment: scroll;
    }
}



/* ===================================
   Why Choose Us Section
   =================================== */

.why-choose-image img {
    border-radius: 15px;
    width: 80%;
    margin-left: 10%;
}

.why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 1.5rem;
}

.why-text h5 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

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

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    padding: 100px 0;
    background: url('/public/car2.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 30%), rgb(21 24 22 / 60%));
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: var(--dark-gray) !important;
}

.btn-outline-light:hover {
    background: white !important;
    color: var(--primary-green);
}

/* ===================================
   Contact Section
   =================================== */

.contact-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.contact-card h5 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

.contact-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--dark-green);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form label i {
    color: var(--primary-green);
    margin-right: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.3rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

.contact-form select.form-control {
    cursor: pointer;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--dark-gray) !important;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.1);
    color: var(--dark-green);
    border: 2px solid var(--primary-green);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 2px solid #e74c3c;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Service area
   =================================== */

.service-areas-block {
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
}

.service-areas-block h5 {
    color: var(--secondary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.counties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.county-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.county-item:hover {
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--primary-green);
    color: var(--white);
}

.county-item i {
    color: var(--secondary-green);
    margin-right: 6px;
    font-size: 0.75rem;
}

.service-areas-block .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .service-areas-block {
        padding: 1.5rem;
    }

    .counties-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

.trust-bar {
  background: #1a5c35;
  color: white;
  padding: 7px 0;
  font-size: 0.82rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1200;
  border-bottom: 1px solid rgba(46,204,113,0.3);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.trust-item i {
  color: #2ecc71;
  font-size: 0.75rem;
}

.trust-item a {
  color: white;
  text-decoration: none;
}

.trust-item a:hover { color: #2ecc71; }

@media (max-width: 991px) {
  .trust-bar { display: none; }
  #mainNav { top: 0 !important; }
}
.final-cta-section {
  position: relative;
  padding: 70px 0 75px;
  background: linear-gradient(160deg, #243447 0%, #2a3d2e 40%, #243447 100%);
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.012) 60px,
    rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}

.final-cta-section::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(46,204,113,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--secondary-green);
  border-radius: 50%;
  animation: dotPing 1.5s ease-out infinite;
}

@keyframes dotPing {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.cta-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-highlight-word {
  color: var(--secondary-green);
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.cta-desc strong {
  color: #fff;
}

.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-trust-row span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-trust-row span i {
  color: var(--secondary-green);
  font-size: 0.85rem;
}

.cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-btn-call,
.cta-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: all 0.3s ease;
  min-width: 210px;
}

.cta-btn-call {
  background: var(--primary-green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-btn-call:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  color: #fff;
}

.cta-btn-quote {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.cta-btn-quote:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
  color: #fff;
}

.btn-icon-wrap {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-text-wrap small {
  font-size: 0.68rem;
  opacity: 0.7;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-text-wrap strong {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-arrow {
  margin-left: auto;
  font-size: 0.85rem;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.cta-btn-quote:hover .btn-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.cta-license {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
  margin: 0;
}

/* ===================================
   Social Media Icons - Footer
   =================================== */

.footer-social {
    display:    flex;
    gap:        12px;
    margin-top: 12px;
}

.social-icon {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:           40px;
    height:          40px;
    background:      rgba(255, 255, 255, 0.1);
    border:          1px solid rgba(255, 255, 255, 0.2);
    border-radius:   50%;
    color:           #fff;
    font-size:       16px;
    text-decoration: none;
    transition:      all 0.3s ease;
}

.social-icon:hover {
    background:  var(--primary-green);
    border-color: var(--primary-green);
    color:       #fff;
    transform:   translateY(-3px);
    box-shadow:  0 6px 20px rgba(30, 132, 73, 0.4);
}


/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer h5 {
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li i {
    color: var(--secondary-green);
    margin-right: 10px;
    width: 20px;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================
   Scroll to Top Button
   =================================== */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* ===================================
   Animations
   =================================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    will-change: opacity, transform;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
    will-change: opacity, transform;
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(46, 204, 113, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Reveal on Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.about-card h3,
.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.btn-white {
    background: #ffffff;
    color: var(--primary-green);
    border: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-white:hover {
    background: #f0f0f0;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.row {
    margin-left:  0;
    margin-right: 0;
}


/* ===================================
   Credentials Section
   =================================== */

.credentials-section {
    background:    #eef1f5;
    padding:       70px 0;
    border-top:    1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.credentials-inner {
    display:     flex;
    align-items: center;
    gap:         70px;
}

.credentials-photo {
    flex:      0 0 360px;
    max-width: 360px;
    position:  relative;
    padding:   16px;
}

.credentials-photo::after {
    content:       '';
    position:      absolute;
    bottom:        4px;
    right:         4px;
    width:         calc(100% - 32px);
    height:        calc(100% - 32px);
    background:    var(--dark-gray);
    border-radius: 18px;
    z-index:       0;
    opacity:       0.18;
    transform:     translate(10px, 10px);
    transition:    transform 0.3s ease, opacity 0.3s ease;
}

.credentials-photo::before {
    content:       '';
    position:      absolute;
    inset:         0;
    border:        2px solid rgba(46, 204, 113, 0.35);
    border-radius: 22px;
    z-index:       2;
    pointer-events: none;
    transition:    border-color 0.3s ease;
}

.credentials-photo:hover::before {
    border-color: rgba(46, 204, 113, 0.7);
}

.credentials-photo:hover::after {
    transform: translate(14px, 14px);
    opacity:   0.22;
}

.credentials-photo img {
    width:         100%;
    border-radius: 16px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position:   relative;
    z-index:    1;
    display:    block;
}

.credentials-photo:hover img {
    transform:  translateY(-8px) scale(1.01);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.22),
        0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Photo badge — shorter & rounded */
.credentials-photo .photo-badge {
    position:      absolute;
    bottom:        28px;
    left:          -10px;
    background:    var(--dark-gray);
    color:         white;
    padding:       8px 16px;
    border-radius: 50px;
    font-size:     0.75rem;
    font-weight:   600;
    display:       flex;
    align-items:   center;
    gap:           6px;
    z-index:       3;
    box-shadow:    0 6px 20px rgba(0, 0, 0, 0.25);
    white-space:   nowrap;
}

.credentials-photo .photo-badge i {
    color:     var(--secondary-green);
    font-size: 0.8rem;
}

.credentials-content {
    flex: 1;
}

.credentials-content h2 {
    font-size:     1.9rem;
    font-weight:   700;
    color:         var(--dark-gray);
    margin-bottom: 0.5rem;
}

.credentials-content > p {
    color:        var(--text-light);
    font-size:    1rem;
    line-height:  1.75;
    margin-bottom: 1.8rem;
    max-width:    540px;
}

.cred-grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   14px;
    margin-bottom:         1.8rem;
}

.cred-item {
    display:     flex;
    align-items: center;
    gap:         12px;
    background:  #ffffff;
    padding:     14px 16px;
    border-radius: 10px;
    box-shadow:  0 2px 8px rgba(0, 0, 0, 0.06);
    transition:  transform 0.2s ease, box-shadow 0.2s ease;
}

.cred-item:hover {
    transform:  translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.15);
}

.cred-icon {
    width:           42px;
    height:          42px;
    background:      linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius:   10px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    color:           white;
    font-size:       1rem;
    flex-shrink:     0;
}

.cred-text {
    line-height: 1.3;
}

.cred-text strong {
    display:     block;
    font-size:   0.88rem;
    color:       var(--dark-gray);
    font-weight: 600;
}

.cred-text span {
    font-size: 0.78rem;
    color:     var(--text-light);
}

/* License badge */
.license-badge {
    display:     inline-flex;
    align-items: center;
    flex-wrap:   wrap;
    gap:         8px;
    background:  var(--dark-gray);
    color:       white;
    padding:     11px 20px;
    border-radius: 50px;
    font-size:   0.82rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.license-badge i {
    color: var(--secondary-green);
}


/* ===================================
   Utility Classes
   =================================== */

.bg-light {
    background: var(--light-gray) !important;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
    border-radius: 15px !important;
}


/* ===================================
   Responsive — 1199px
   =================================== */

@media (max-width: 1199px) {
    .review-card {
        width: 320px;
    }
}


/* ===================================
   Responsive — 991px
   =================================== */

@media (max-width: 991px) {

    /* Trust bar — visible but scrollable on tablet/mobile */
    .trust-bar {
        display:   block;
        font-size: 0.75rem;
        padding:   5px 0;
    }

    .trust-bar-inner {
        justify-content:          flex-start;
        overflow-x:               auto;
        -webkit-overflow-scrolling: touch;
        padding:                  0 12px;
        gap:                      1rem;
        scrollbar-width:          none;
    }

    .trust-bar-inner::-webkit-scrollbar {
        display: none;
    }

    #mainNav {
        top: 30px !important;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Navbar collapse */
    .navbar-collapse {
        background:    var(--dark-gray);
        padding:       1rem;
        border-radius: 10px;
        margin-top:    1rem;
    }

    /* Contact form */
    .contact-form-wrapper {
        padding:    1.2rem;
        margin-top: 1rem;
    }

    /* Credentials */
    .credentials-inner {
        flex-direction: column;
        gap:            40px;
        text-align:     center;
    }

    .credentials-photo {
        flex:      none;
        max-width: 300px;
        margin:    0 auto;
    }

    .credentials-photo .photo-badge {
        left:   0;
        bottom: 20px;
    }

    .credentials-content > p {
        margin-left:  auto;
        margin-right: auto;
    }

    .cred-grid {
        max-width:    480px;
        margin-left:  auto;
        margin-right: auto;
    }

    .cred-item {
        text-align: left;
    }

    /* Section */
    .section-title {
        font-size: 2rem;
    }


        .nav-social {
            justify-content: center;
            padding: 0.75rem 0 0.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 0.75rem;
            padding-left: 0 !important;
        }
    
}

.nav-social {
        display: flex;
        gap: 8px;
        align-items: center;
    }

/* ===================================
   Responsive — 767px
   =================================== */

    @media (max-width: 767px) {
    
    .nav-social {
            justify-content: center;
            padding: 0.75rem 0 0.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 0.75rem;
            padding-left: 0 !important;
        }
    

    /* Trust bar — compact on small mobile */
    .trust-bar {
        font-size: 0.7rem;
        padding:   5px 0;
    }

    #mainNav {
        top: 28px !important;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    /* CTA */
    .cta-title    { font-size: 1.8rem; }
    .cta-subtitle { font-size: 1rem; }

    .final-cta-section {
        padding: 50px 0 55px;
    }

    .cta-btn-row {
        flex-direction: column;
        align-items:    center;
    }

    .cta-btn-call,
    .cta-btn-quote {
        width:     100%;
        max-width: 300px;
    }

    .cta-main-title {
        font-size: 1.7rem;
    }

    .cta-trust-row {
        gap: 14px;
    }

    /* Portfolio */
    .portfolio-image {
        height: 200px;
    }

    /* Why choose */
    .why-item {
        flex-direction: column;
        text-align:     center;
        align-items:    center;
    }

    .why-icon {
        margin: 0 auto 1rem;
    }

    .why-choose-image img {
        width:       100%;
        margin-left: 0;
    }

    /* Reviews */
    .reviews-carousel {
        display:    flex;
        transition: transform 0.4s ease;
    }

    .review-card {
        flex:      0 0 100%;
        max-width: 100%;
        padding:   2rem;
    }

    .review-card::before {
        font-size: 4rem;
    }

    .review-prev { left:  5px; }
    .review-next { right: 5px; }

    /* Carousel modal */
    .modal-dialog {
        max-width: 95% !important;
        margin:    1rem auto;
    }

    #portfolioCarousel .carousel-item {
        height: 250px;
    }

    .carousel-inner img {
        max-height: 250px;
    }

    /* Carousel modal */

    /* Hero */
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    .hero-buttons {
        display:        flex;
        flex-direction: column;
        align-items:    center;
        gap:            0.75rem;
    }

    .hero-buttons .btn {
        width:     100%;
        max-width: 280px;
        margin:    0 !important;
    }

    /* Cards */
    .service-card  { text-align: center; }
    .contact-card  { text-align: center; }

    /* Contact form */
    .contact-form-wrapper {
        padding: 1rem;
    }

    /* Service areas */
    .service-areas-block {
        padding: 1.5rem;
    }

    .counties-grid {
        grid-template-columns: 1fr 1fr;
        gap:                   8px;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer ul li {
        justify-content: center;
        display:         flex;
        align-items:     center;
    }

    .footer-bottom .col-md-6:last-child {
        margin-top: 0.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    /* Credentials */
    .license-badge {
        font-size:       0.72rem;
        padding:         9px 14px;
        justify-content: center;
        text-align:      center;
    }
}


/* ===================================
   Responsive — 575px
   =================================== */

@media (max-width: 575px) {

    /* Trust bar — hide all but phone + license on very small */
    .trust-item:nth-child(2),
    .trust-item:nth-child(3),
    .trust-item:nth-child(6) {
        display: none;
    }

    /* Hero */
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-buttons .btn {
        display: block;
        width:   100%;
        margin:  0.5rem 0;
    }

    /* Navbar brand */
    .logo-img {
        height: 40px;
        width:  40px;
    }

    .brand-name {
        font-size: 1rem;
    }

    /* Icons */
    .about-icon,
    .service-icon,
    .contact-icon {
        width:     60px;
        height:    60px;
        font-size: 1.5rem;
    }

    /* About cards */
    .about-icon {
        margin: 0 auto 1rem;
    }

    /* Service areas */
    .service-areas-block {
        padding: 1.25rem;
    }

    /* Contact form */
    .contact-form-wrapper {
        padding: 1rem;
    }

    /* Reviews */
    .review-card {
        padding: 1.5rem;
    }

    .author-avatar {
        width:     50px;
        height:    50px;
        font-size: 1.2rem;
    }

    /* Credentials */
    .cred-grid {
        grid-template-columns: 1fr;
    }

    .credentials-content h2 {
        font-size: 1.5rem;
    }

    .credentials-photo .photo-badge {
        font-size:   0.68rem;
        padding:     6px 12px;
        white-space: normal;
        text-align:  center;
        left:        0;
        right:       0;
        margin:      0 auto;
        max-width:   80%;
    }
}