.cta-btn {
                background: #059669;
                color: #ffffff;
                padding: 0.75rem 2rem;
                border-radius: 9999px;
                font-weight: bold;
                transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
                background: #047857;
                transform: translateY(-3px);
}

/* TRUST BADGES */
.trust-badges img {
                max-height: 50px;
                margin: 0.5rem;
}

/* RENTAL SERVICES */
.rental-services {
                background: #f9fafb;
                padding: 3rem 1.5rem;
                border-radius: 12px;
                max-width: 1200px;
                margin: 0 auto;
}

.rental-services h2 {
                font-size: 2.5rem;
                font-weight: 700;
                color: #047857;
                text-align: center;
                margin-bottom: 2rem;
}

.service-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
}

.service-card {
                background: #ffffff;
                padding: 1.5rem;
                border-radius: 12px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
                transition: transform 0.3s ease, background 0.3s ease;
                display: flex;
                flex-direction: column;
}

.service-card:hover {
                transform: translateY(-5px);
                background: #e6f9ec;
}

.service-icon {
                font-size: 2rem;
                color: #059669;
                margin-bottom: 0.75rem;
}

.service-title {
                font-size: 1.25rem;
                font-weight: 600;
                color: #047857;
                margin-bottom: 0.5rem;
}

.service-description {
                font-size: 1rem;
                color: #4b5563;
}

/* TRUSTED BY SECTION */
.trusted-by-section {
                background: #f0fdf4;
                padding: 3rem 1.5rem;
                border-radius: 12px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
                max-width: 1200px;
                margin: 0 auto;
}

.trusted-logos {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
}

.trusted-logo {
                max-width: 120px;
                max-height: 60px;
                filter: grayscale(100%);
                opacity: 0.8;
                transition: transform 0.3s ease, filter 0.3s ease;
}

.trusted-logo:hover {
                filter: grayscale(0%);
                opacity: 1;
                transform: scale(1.05);
}

/* WHY CHOOSE US */
.why-choose-us {
                background: #f0fdf4;
                padding: 3rem 1.5rem;
                border-radius: 12px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.why-choose-us h2 {
                font-size: 2.5rem;
                font-weight: 700;
                color: #047857;
                margin-bottom: 1.5rem;
                text-align: center;
}

.why-choose-us .benefits-list {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
}

.benefit-card {
                background: #ffffff;
                padding: 1rem 1.5rem;
                border-radius: 12px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
                display: flex;
                align-items: flex-start;
                transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
                transform: translateY(-5px);
                background: #e6f9ec;
}

.benefit-icon {
                font-size: 2rem;
                color: #059669;
                margin-right: 1rem;
}

.benefit-text {
                font-size: 1rem;
                font-weight: 500;
                color: #333333;
}

.benefit-title {
                font-size: 1.125rem;
                font-weight: 600;
                color: #059669;
                margin-bottom: 0.25rem;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
                background: #f9fafb;
                padding: 3rem 1.5rem;
                border-radius: 12px;
                max-width: 1200px;
                margin: 0 auto;
}

.testimonial-section h2 {
                font-size: 2.5rem;
                font-weight: 700;
                color: #047857;
                text-align: center;
                margin-bottom: 2rem;
}

.testimonial-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
}

.testimonial-card {
                background: #ffffff;
                padding: 1.5rem;
                border-radius: 12px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
                display: flex;
                gap: 1rem;
                transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
                transform: translateY(-5px);
                background: #e6f9ec;
}

.testimonial-avatar {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                object-fit: cover;
                border: 3px solid #059669;
}

.testimonial-name {
                font-size: 1rem;
                font-weight: 700;
                color: #047857;
}

.testimonial-text {
                font-size: 1rem;
                color: #4b5563;
                line-height: 1.5;
}

/* RENT YOUR PROPERTY SECTION */
.rent-your-property-section {
                width: 100vw;
                margin-left: calc(50% - 50vw);
                padding: 4rem 1.5rem;
                position: relative;
                overflow: hidden;
                background: linear-gradient(135deg, rgba(4, 120, 87, 0.95), rgba(0, 100, 63, 0.95));
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.rent-your-property-section::before {
                content: '';
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0.4);
                z-index: 0;
}

.rent-your-property-section h2 {
                font-size: 2.5rem;
                color: #ffffff;
                text-align: center;
                margin-bottom: 1rem;
}

.rent-your-property-section p {
                font-size: 1.125rem;
                color: #f9fafb;
                max-width: 600px;
                margin: 0 auto 2rem auto;
}

.rent-your-property-section .cta-btn {
                background-color: #ffffff;
                color: #047857;
                font-weight: bold;
                transition: background 0.3s ease, transform 0.3s ease;
}

.rent-your-property-section .cta-btn:hover {
                background-color: #e6f9ec;
                transform: translateY(-3px);
}

/* GET QUOTE SECTION */
.get-quote-section {
                width: 100vw;
                margin-left: calc(50% - 50vw);
                padding: 4rem 1.5rem;
                position: relative;
                background: #f9fafb;
}

.floating-input {
                width: 100%;
                padding: 0.75rem 1rem;
                background: #f9fafb;
                border: 2px solid #d1d5db;
                border-radius: 8px;
                outline: none;
                transition: border-color 0.3s, box-shadow 0.3s;
}

.floating-input:focus {
                border-color: #059669;
                box-shadow: 0 0 10px rgba(5, 150, 105, 0.2);
}

.floating-input::placeholder {
                opacity: 0;
                transition: opacity 0.3s;
}

.floating-input:focus::placeholder {
                opacity: 1;
}

.floating-label {
                position: absolute;
                top: 50%;
                left: 1rem;
                transform: translateY(-50%);
                transition: all 0.3s ease;
                pointer-events: none;
                font-size: 1rem;
                color: #6b7280;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
                transform: translateY(-1.5rem);
                font-size: 0.875rem;
                color: #047857;
}

/* RESPONSIVE */
@media (max-width: 768px) {
                .hero-bg { height: 50vh; }
                .rent-your-property-section { padding: 3rem 1rem; }
                .get-quote-section { padding: 3rem 1rem; }
                .cta-btn { padding: 0.5rem 1.25rem; font-size: 0.9rem; }
}

                .testimonial-section {
                                background: #f9fafb;
                                padding: 3rem 1.5rem;
                                border-radius: 12px;
                                max-width: 1200px;
                                margin: 0 auto;
                }

                .testimonial-section h2 {
                                font-size: 2.5rem;
                                font-weight: 700;
                                color: #047857;
                                margin-bottom: 2rem;
                                text-align: center;
                }

                .testimonial-grid {
                                display: grid;
                                grid-template-columns: 1fr;
                                gap: 1.5rem;
                }

                .testimonial-card {
                                background: #ffffff;
                                padding: 1.5rem;
                                border-radius: 12px;
                                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
                                display: flex;
                                align-items: flex-start;
                                gap: 1rem;
                                transition: transform 0.3s;
                }

                .testimonial-card:hover {
                                transform: translateY(-5px);
                                background: #e6f9ec;
                }

                .testimonial-avatar {
                                width: 60px;
                                height: 60px;
                                border-radius: 50%;
                                object-fit: cover;
                                border: 3px solid #059669;
                }

                .testimonial-content {
                                flex: 1;
                }

                .testimonial-name {
                                font-size: 1rem;
                                font-weight: 700;
                                color: #047857;
                                margin-bottom: 0.25rem;
                }

                .testimonial-text {
                                font-size: 1rem;
                                color: #4b5563;
                                line-height: 1.5;
                }

                @media (min-width: 640px) {
                                .testimonial-grid {
                                                grid-template-columns: 1fr 1fr;
                                }
                }

                @media (min-width: 1024px) {
                                .testimonial-grid {
                                                grid-template-columns: 1fr 1fr 1fr;
                                }
                }

                .rent-your-property-section {
                width: 100vw;
                margin-left: calc(50% - 50vw); /* Center the full-width section */
                position: relative;
                padding: 4rem 1.5rem;
                overflow: hidden;
                background: linear-gradient(135deg, rgba(4, 120, 87, 0.9), rgba(0, 100, 63, 0.9));
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.rent-your-property-section::before {
                content: '';
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0.4);
                z-index: 0;
}

.rent-your-property-section .cta-btn {
                background-color: #ffffff;
                color: #047857;
                font-weight: bold;
                transition: background 0.3s, transform 0.3s;
}

.rent-your-property-section .cta-btn:hover {
                background-color: #e6f9ec;
                transform: translateY(-3px);
}

.rent-your-property-section h2 {
                font-size: 2.5rem;
}

.rent-your-property-section p {
                font-size: 1.125rem;
                max-width: 600px;
                margin: 0 auto;
}

@media (max-width: 768px) {
                .rent-your-property-section {
                                padding: 3rem 1rem;
                }

                .rent-your-property-section h2 {
                                font-size: 2rem;
                }
}

                .testimonial-section {
                                background: #f9fafb;
                                padding: 3rem 1.5rem;
                                border-radius: 12px;
                                max-width: 1200px;
                                margin: 0 auto;
                                position: relative;
                }

                .testimonial-slider {
                                overflow: hidden;
                                position: relative;
                }

                .testimonial-slide {
                                display: flex;
                                transition: transform 0.3s ease-in-out;
                }

                .testimonial-card {
                                min-width: 100%;
                                max-width: 400px;
                                margin: 0 auto;
                                transition: transform 0.3s;
                }

                .testimonial-avatar {
                                width: 80px;
                                height: 80px;
                                border-radius: 50%;
                                object-fit: cover;
                                border: 3px solid #059669;
                }

                .prev-btn, .next-btn {
                                background: rgba(4, 120, 87, 0.8);
                                padding: 0.75rem;
                                border: none;
                                cursor: pointer;
                                transition: background 0.3s;
                }

                .prev-btn:hover, .next-btn:hover {
                                background: #047857;
                }

                .get-quote-section {
                width: 100vw;
                margin-left: calc(50% - 50vw);
                position: relative;
}

.floating-input {
                width: 100%;
                padding: 0.75rem 1rem;
                background: #f9fafb;
                border: 2px solid #d1d5db;
                border-radius: 8px;
                outline: none;
                transition: border-color 0.3s, box-shadow 0.3s;
}

.floating-input:focus {
                border-color: #059669;
                box-shadow: 0 0 10px rgba(5, 150, 105, 0.2);
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
                transform: translateY(-1.5rem);
                font-size: 0.875rem;
                color: #047857;
}

.floating-label {
                position: absolute;
                top: 50%;
                left: 1rem;
                transform: translateY(-50%);
                transition: all 0.3s;
                pointer-events: none;
                font-size: 1rem;
                color: #6b7280;
}

.floating-input::placeholder {
                opacity: 0;
                transition: opacity 0.3s;
}

.floating-input:focus::placeholder {
                opacity: 1;
}

@media (max-width: 1024px) {
                .get-quote-section form {
                                padding: 1.5rem;
                }
}

@media (max-width: 768px) {
                .get-quote-section {
                                padding: 2rem 1rem;
                }

                .get-quote-section form {
                                grid-template-columns: 1fr;
                }
}


