/* ===================================
   BuildPro Construction - Custom Styles
   Modern & Ultramodern Design
   =================================== */

:root {
    --primary-color: #036737;
    --secondary-color: #4F504F;
    --accent-color: #025a2d;
    --dark-color: #1A1A1A;
    --light-color: #F8F9FA;
    --white-color: #ffffff;
    --gradient-1: linear-gradient(135deg, #036737 0%, #025a2d 100%);
    --gradient-2: linear-gradient(135deg, #4F504F 0%, #1A1A1A 100%);
    --gradient-3: linear-gradient(135deg, #036737 0%, #4F504F 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

#mainNav {
    padding: 1rem 0;
    background: rgba(3, 103, 55, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    background: rgba(3, 103, 55, 0.98);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

#mainNav.scrolled .navbar-logo {
    height: 40px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }

    .brand-text {
        font-size: 1.2rem;
    }
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 2rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(3, 103, 55, 0.2);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.btn-quote {
    background: var(--gradient-1) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(3, 103, 55, 0.4);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.dropdown-item.active {
    background: var(--primary-color);
    color: #fff;
}

.dropdown-divider {
    border-color: rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Background Carousel */
.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-carousel .carousel-inner,
.hero-bg-carousel .carousel-item {
    height: 100%;
}

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

.hero-bg-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 103, 55, 0.85), rgba(79, 80, 79, 0.75));
}

/* Carousel Fade Effect */
.hero-bg-carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--gradient-1);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(3, 103, 55, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--dark-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

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

.services-section {
    background: var(--light-color);
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

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

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    background: var(--gradient-2);
    color: #fff;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.portfolio-section {
    background: #fff;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.7rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 103, 55, 0.3);
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item.hide {
    display: none;
}

.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3, 103, 55, 0.95), rgba(3, 103, 55, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.portfolio-overlay h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

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

.about-section {
    background: var(--light-color);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: #333;
}

.about-feature i {
    font-size: 1.5rem;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
    background: #fff;
}

/* Rating Summary */
.rating-summary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.overall-rating .rating-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.stars-large i {
    color: #FFD700;
    font-size: 2rem;
    margin: 0 0.2rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(3, 103, 55, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-card .service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.testimonial-date {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 2.5rem;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input[type="radio"]:checked ~ label {
    color: #FFD700;
}

/* Review Modal */
#reviewModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-lg);
}

#reviewModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 2rem;
}

#reviewModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

#reviewModal .modal-body {
    padding: 2rem;
}

#reviewModal .form-label {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

#reviewModal .form-control,
#reviewModal .form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

#reviewModal .form-control:focus,
#reviewModal .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 103, 55, 0.15);
}

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

#reviewModal .btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#reviewModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(3, 103, 55, 0.3);
}

/* ===================================
   WhatsApp & Call Floating Buttons
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

.call-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(3, 103, 55, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.call-float:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(3, 103, 55, 0.6);
}

/* Show call button only on mobile */
@media (max-width: 768px) {
    .call-float {
        display: flex;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 25px;
        right: 25px;
    }
}

/* ===================================
   Trust & Certifications Section
   =================================== */

.trust-section {
    background: var(--light-color);
}

.trust-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

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

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

.trust-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

/* Office Info */
.office-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.office-info h3 {
    color: var(--dark-color);
    font-weight: 700;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.office-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.office-item h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.office-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.office-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Service Areas */
.service-areas h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    background: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    background: #fff;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.accordion-button:not(.collapsed) i {
    color: #fff;
}

.accordion-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

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

.accordion-body {
    padding: 2rem;
    background: #fff;
    color: #555;
    line-height: 1.8;
}

.accordion-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.75rem;
    color: #666;
}

.accordion-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-cta {
    background: linear-gradient(135deg, rgba(3, 103, 55, 0.1), rgba(79, 80, 79, 0.1));
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.faq-cta h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===================================
   Cost Calculator Section
   =================================== */

.calculator-section {
    background: var(--light-color);
}

.calculator-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.calculator-card .form-label {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.calculator-card .form-label i {
    color: var(--primary-color);
}

.calculator-card .form-select,
.calculator-card .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calculator-card .form-select:focus,
.calculator-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 103, 55, 0.15);
}

.calculator-results {
    background: linear-gradient(135deg, rgba(3, 103, 55, 0.05), rgba(79, 80, 79, 0.05));
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.results-header h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cost-breakdown {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item span {
    color: #666;
    font-size: 1rem;
}

.cost-item strong {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.cost-item.total-cost {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 1rem -2rem -2rem;
    padding: 1.5rem 2rem;
    border-radius: 0 0 12px 12px;
}

.cost-item.total-cost span,
.cost-item.total-cost strong {
    color: #fff;
}

.cost-item.total-cost strong {
    font-size: 1.8rem;
    font-weight: 800;
}

.cost-range {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.payment-options h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.payment-plan {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.payment-plan i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.payment-plan div {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-plan strong {
    color: var(--dark-color);
}

.payment-plan span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.calculator-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.calculator-disclaimer i {
    color: #856404;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.calculator-disclaimer small {
    color: #856404;
    line-height: 1.6;
}

.pricing-benefits h4 {
    color: var(--dark-color);
    font-weight: 700;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: #666;
    font-size: 0.95rem;
}

/* ===================================
   Payment Options Section
   =================================== */

.payment-section {
    background: var(--light-color);
}

.payment-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

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

.payment-card.featured {
    border-top-color: #FFD700;
    background: linear-gradient(135deg, rgba(3, 103, 55, 0.05), rgba(255, 215, 0, 0.05));
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FFD700;
    color: var(--dark-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.payment-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #fff;
}

.payment-icon.mpesa {
    background: linear-gradient(135deg, #00A651, #008C3A);
}

.payment-icon.bank {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
}

.payment-icon.installment {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.payment-icon.sacco {
    background: linear-gradient(135deg, #DC2626, #EF4444);
}

.payment-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.payment-card p {
    color: #666;
    margin-bottom: 1rem;
}

.payment-details {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.payment-details strong {
    color: var(--dark-color);
}

.payment-info-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.payment-info-card h3 {
    color: var(--dark-color);
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.payment-schedule {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.payment-schedule h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-top: 0.3rem;
}

.timeline-content strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .payment-card {
        margin-bottom: 1rem;
    }

    .payment-info-card {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   Before/After Transformations
   =================================== */

.before-after-section {
    background: var(--light-color);
}

.transformation-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

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

.transformation-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.transformation-title i {
    color: var(--primary-color);
}

.before-after-container {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

/* Transformation Carousel Styles */
.transformation-carousel {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.transformation-carousel .carousel-inner {
    border-radius: 15px;
}

.transformation-carousel .carousel-item img {
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.transformation-carousel .carousel-caption {
    bottom: 20px;
    left: 20px;
    right: auto;
    text-align: left;
}

.transformation-carousel .carousel-caption .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.transformation-carousel .carousel-control-prev,
.transformation-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(3, 103, 55, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.transformation-card:hover .carousel-control-prev,
.transformation-card:hover .carousel-control-next {
    opacity: 1;
}

.transformation-carousel .carousel-control-prev {
    left: 15px;
}

.transformation-carousel .carousel-control-next {
    right: 15px;
}

.transformation-carousel .carousel-control-prev-icon,
.transformation-carousel .carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.transformation-carousel .carousel-indicators {
    margin-bottom: 15px;
}

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

.transformation-carousel .carousel-indicators button.active {
    background-color: var(--primary-color);
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.image-label {
    position: absolute;
    top: 15px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 5px;
    z-index: 2;
}

.before-label {
    left: 15px;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
}

.after-label {
    right: 15px;
    background: rgba(3, 103, 55, 0.9);
    color: #fff;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
    z-index: 3;
}

.slider-handle i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.slider-handle i:first-child {
    margin-right: -5px;
}

.transformation-details {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-row i {
    color: var(--primary-color);
}

.detail-row strong {
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* ===================================
   Resources Section
   =================================== */

.resource-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

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

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

.resource-card h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.resource-list li {
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.resource-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(3, 103, 55, 0.1), rgba(79, 80, 79, 0.1));
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.cta-box h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===================================
   Language Toggle
   =================================== */

.language-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.navbar.scrolled .lang-btn {
    border-color: rgba(3, 103, 55, 0.3);
    color: var(--dark-color);
}

.navbar.scrolled .lang-btn:hover {
    background: rgba(3, 103, 55, 0.1);
    border-color: var(--primary-color);
}

.navbar.scrolled .lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 991px) {
    .language-toggle {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ===================================
   Page Loader
   =================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s ease;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content p {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
}

/* ===================================
   Lazy Loading Images
   =================================== */

img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* ===================================
   Social Media Section
   =================================== */

.social-section {
    background: var(--light-color);
}

.social-card {
    display: block;
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    border-top: 4px solid;
    height: 100%;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.social-card.instagram {
    border-top-color: #E4405F;
}

.social-card.instagram:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.05), rgba(228, 64, 95, 0.1));
}

.social-card.tiktok {
    border-top-color: #000000;
}

.social-card.tiktok:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
}

.social-card.facebook {
    border-top-color: #1877F2;
}

.social-card.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.05), rgba(24, 119, 242, 0.1));
}

.social-card.youtube {
    border-top-color: #FF0000;
}

.social-card.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.1));
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #fff;
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-card.tiktok .social-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.social-card.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-card h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: #666;
    margin-bottom: 1rem;
}

.social-handle {
    display: inline-block;
    background: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-buttons .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .share-buttons .btn {
        min-width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }
}

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

.contact-section {
    background: var(--light-color);
}

.contact-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(3, 103, 55, 0.4);
}

.contact-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 103, 55, 0.1);
}

.form-floating > label {
    color: #999;
}

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

.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-widget h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

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

.footer-contact a:hover {
    color: var(--primary-color);
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.8rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 0.8rem 1.5rem;
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

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

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(3, 103, 55, 0.4);
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(3, 103, 55, 0.5);
}

/* ===================================
   Payment Modals
   =================================== */

.payment-instructions {
    padding: 1rem 0;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 1rem;
}

.step-content strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

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

.bank-details-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item label {
    color: var(--text-color);
    margin: 0;
}

.detail-item strong {
    color: var(--dark-color);
}

.sacco-list {
    padding: 1rem 0;
}

.sacco-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--light-color);
    border-radius: 8px;
}

.sacco-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.sacco-steps {
    padding-left: 1.5rem;
}

.sacco-steps li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .navbar-nav {
        background: rgba(26, 26, 46, 0.95);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

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

    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

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

.btn-primary {
    background: var(--gradient-1);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(3, 103, 55, 0.4);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
