/* Global Styles */
:root {
    --primary-color: #9ACD32; /* Yellow-Green */
    --secondary-color: #BADA55; /* Lighter Yellow-Green */
    --accent-color: #7CB518; /* Darker Yellow-Green */
    --text-color: #F5F5F5; /* Light Grey Text */
    --light-color: #ffffff;
    --dark-color: #333333; /* Dark Grey */
    --darker-color: #222222; /* Darker Grey */
    --gray-color: #444444; /* Medium Grey */
    --border-color: #555555; /* Border Grey */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--darker-color);
}

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

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--darker-color);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background-color: #25d366;
    color: var(--darker-color);
}

.whatsapp-btn:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
}

.call-btn {
    background-color: var(--secondary-color);
    color: var(--darker-color);
}

.call-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: var(--darker-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

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

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section with Slideshow */
#hero {
    padding-top: 80px;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
}

.slide img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 34, 34, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-color);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
}

/* Slideshow Navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(34, 34, 34, 0.7);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(34, 34, 34, 0.9);
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.active, .dot:hover {
    background-color: var(--primary-color);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Services Section */
#services {
    padding: 80px 0;
    background-color: var(--darker-color);
}

.service-category {
    margin-bottom: 50px;
}

.service-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

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

.service-card {
    background-color: var(--gray-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--dark-color);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 15px;
    background-color: var(--gray-color);
}

.service-card:hover h4 {
    background-color: var(--dark-color);
}

/* For maintaining backward compatibility with icon-based cards */
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-top: 20px;
}

/* Media queries update for service cards */
@media (max-width: 768px) {
    .service-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 160px;
    }
}

/* CTA Section */
#cta {
    padding: 80px 0;
    background: linear-gradient(rgba(34, 34, 34, 0.9), rgba(34, 34, 34, 0.9)), url('assets/images/hero_img1.png');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Section */
#contact {
    padding: 80px 0;
    background-color: var(--dark-color);
}

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

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.map-container iframe {
    display: block;
    width: 100%;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: var(--gray-color);
    color: var(--text-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    border: none;
    font-size: 1rem;
}

/* Footer Styles */
footer {
    background-color: var(--darker-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(154, 205, 50, 0.2);
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    .service-category h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--darker-color);
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        margin: 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide img {
        height: 60vh;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .service-category h3 {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .prev, .next {
        font-size: 20px;
        padding: 10px;
    }
    
    .slide img {
        height: 50vh;
    }
}

/* Features Section */
#features {
    padding: 60px 0;
    background-color: var(--darker-color);
    border-top: 1px solid rgba(154, 205, 50, 0.2);
    border-bottom: 1px solid rgba(154, 205, 50, 0.2);
}

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

.feature-card {
    background-color: var(--dark-color);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(154, 205, 50, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(154, 205, 50, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Reviews Section */
#reviews {
    padding: 80px 0;
    background-color: var(--dark-color);
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0 40px;
}

.stars {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--text-color);
}

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

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

.review-card {
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}

.review-stars {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.review-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

.review-cta {
    text-align: center;
    margin-top: 30px;
}

.review-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Media Queries Updates */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .stars {
        font-size: 1.5rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 20px 15px;
    }
    
    .reviewer-avatar {
        font-size: 2rem;
        margin-right: 10px;
    }
}

/* Hero Trust Signals */
.hero-trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(154, 205, 50, 0.3);
}

.rating-badge, .best-badge {
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.rating-badge .stars {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 8px;
    display: flex;
}

.best-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 8px;
}

.rating-badge span, .best-badge span {
    color: var(--light-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.badge-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

/* Media query updates for hero trust signals */
@media (max-width: 768px) {
    .hero-trust-signals {
        flex-direction: column;
        padding: 8px 15px;
    }
    
    .badge-divider {
        width: 50%;
        height: 1px;
        margin: 8px 0;
    }
    
    .rating-badge, .best-badge {
        padding: 5px;
    }
}

@media (max-width: 576px) {
    .hero-trust-signals {
        margin-bottom: 20px;
    }
    
    .rating-badge .stars, .best-badge i {
        font-size: 0.9rem;
    }
    
    .rating-badge span, .best-badge span {
        font-size: 0.8rem;
    }
} 