/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    background-color: #2a5c40;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-img {
    height: 36px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 6px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4edda;
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: 70px;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background-color: rgba(42, 92, 64, 0.8);
    color: white;
    padding: 20px;
    max-width: 500px;
    border-radius: 5px;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* CTA Buttons */
.cta-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.whatsapp-btn, .call-btn {
    padding: 12px 20px;
    margin: 5px 0;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.call-btn {
    background-color: #2a5c40;
    color: white;
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.whatsapp-btn i, .call-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Main Content Styles */
main {
    padding: 40px 0;
}

.intro-section {
    margin-bottom: 40px;
    text-align: center;
}

.intro-section h1 {
    font-size: 2.5rem;
    color: #2a5c40;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 15px 20px 10px;
    color: #2a5c40;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.gallery-section {
    margin: 60px 0;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2a5c40;
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.testimonial-section {
    margin: 60px 0;
    text-align: center;
}

.testimonial-section h2 {
    margin-bottom: 30px;
    color: #2a5c40;
    font-size: 2rem;
}

.testimonial {
    background: white;
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.client-name {
    font-weight: bold;
    color: #2a5c40;
}

/* Footer Styles */
footer {
    background-color: #2a5c40;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #d4edda;
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d4edda;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        width: 100%;
        justify-content: space-around;
    }

    nav ul li {
        margin: 0;
    }

    .hero-slider {
        height: 60vh;
    }

    .slide-content {
        left: 20px;
        bottom: 20px;
        max-width: 80%;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .intro-section h1 {
        font-size: 2rem;
    }

    .logo-img {
        height: 28px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 50vh;
        margin-top: 60px;
    }

    .slide-content {
        left: 10px;
        bottom: 10px;
        padding: 10px;
    }

    .cta-buttons {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-btn, .call-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 22px;
        margin-right: 6px;
    }
}

/* About Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/tennis.JPG');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.about-text h2 {
    color: #2a5c40;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-section {
    margin: 80px 0;
    text-align: center;
}

.team-section h2 {
    color: #2a5c40;
    font-size: 2rem;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #d4edda;
}

.team-member h3 {
    color: #2a5c40;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
}

.values-section {
    margin: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: #2a5c40;
    font-size: 2rem;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: #2a5c40;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #2a5c40;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
}

/* Project Page Styles */
.project-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/walkway.JPG');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.project-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.project-hero p {
    font-size: 1.2rem;
}

.project-form-section {
    margin: 60px 0;
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.form-intro h2 {
    color: #2a5c40;
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.project-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2a5c40;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.hint {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.submit-btn {
    background-color: #2a5c40;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.submit-btn i {
    margin-left: 10px;
}

.submit-btn:hover {
    background-color: #1e462e;
}

.contact-alternative {
    text-align: center;
    margin-top: 60px;
}

.contact-alternative h3 {
    color: #2a5c40;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-alternative p {
    margin-bottom: 20px;
}

.direct-contact-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.direct-contact-btns .whatsapp-btn,
.direct-contact-btns .call-btn {
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.direct-contact-btns .whatsapp-btn i,
.direct-contact-btns .call-btn i {
    margin-right: 8px;
}

.address {
    display: inline-flex;
    align-items: center;
    background: #f0f0f0;
    padding: 15px 20px;
    border-radius: 8px;
}

.address i {
    margin-right: 10px;
    color: #2a5c40;
}

.process-section {
    margin: 80px 0;
}

.process-section h2 {
    text-align: center;
    color: #2a5c40;
    font-size: 2rem;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2a5c40;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #2a5c40;
    margin-bottom: 15px;
}

.step p {
    color: #666;
}

/* Responsive Styles for About and Project Pages */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .direct-contact-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1, .project-hero h1 {
        font-size: 2rem;
    }
    
    .project-form {
        padding: 20px;
    }
}