/* Global Styles */
:root {
    --primary-color: #1a5276;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    width: 130px;
    height: 60px;
    margin-right: 15px;
}

header h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

nav {
    background-color: var(--primary-color);
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li a {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover, nav ul li a.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

.header-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.whatsapp-button, .call-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.whatsapp-button {
    background-color: #25D366;
}

.call-button {
    background-color: var(--primary-color);
}

.whatsapp-button:hover, .call-button:hover {
    transform: translateY(-5px);
}

/* Main Content Styles */
main {
    padding: 40px 0;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-color);
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Services Section */
.services {
    margin-bottom: 60px;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 15px 20px 0;
    color: var(--primary-color);
}

.service-card p {
    padding: 10px 20px 20px;
    color: var(--text-light);
}

/* Projects Section */
.featured-projects {
    margin-bottom: 60px;
}

.featured-projects h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.project-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    padding: 60px 20px;
    margin-bottom: 40px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial h4 {
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 40px 0 0;
}

.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;
    color: var(--secondary-color);
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
    color: #bbb;
}

.footer-section i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-section ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    color: #bbb;
}

/* About Page Styles */
.about-page .about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/blog03.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}

.about-page .about-hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-page .about-hero p {
    font-size: 1.2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-section {
    margin-bottom: 60px;
}

.values-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
}

.team-section {
    margin-bottom: 60px;
}

.team-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px 20px;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-color);
    margin-bottom: 40px;
}

.cta-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Project Page Styles */
.project-page .project-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/blog02.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}

.project-page .project-hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.project-page .project-hero p {
    font-size: 1.2rem;
}

.project-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

#projectForm {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.2);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--primary-color);
}

.form-sidebar {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.form-sidebar h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.process-step {
    display: flex;
    margin-bottom: 25px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-alternative {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.contact-alternative h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-alternative p {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo-container {
        justify-content: center;
    }

    header h1 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .header-slider {
        height: 300px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .about-content, .project-form-section {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        order: -1;
    }

    .service-grid, .project-gallery, .testimonial-container, .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80px;
        height: 50px;
    }

    header h1 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .about-page .about-hero h2, .project-page .project-hero h2 {
        font-size: 2rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button, .call-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}