@keyframes slideInLogo {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

:root {
    --primary-color: #32936F;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #34495e;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

body {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transition: opacity 1.2s ease-in-out;
}

.hero-image.fade-out {
    opacity: 0;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(44, 62, 80, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.logo-placeholder {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.logo-img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) brightness(0) invert(1);
    animation: slideInLogo 1.6s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Two Column Section */
.two-column {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.column {
    padding: 20px;
}

.column h2 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
}

.column p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 25px;
}

.services-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.services-list p {
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: var(--dark-color);
    color: white;
    padding: 80px 40px;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #bdc3c7;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-inline .contact-form {
    background: transparent;
    color: var(--text-color);
    padding: 0;
}

.contact-inline .form-group label,
.contact-inline .form-group legend {
    color: var(--text-color);
}

.contact-inline .form-group input[type="text"],
.contact-inline .form-group input[type="tel"],
.contact-inline .form-group input[type="email"] {
    border: 1px solid var(--border-color);
}

.contact-inline .submit-button {
    background: var(--primary-color);
    color: white;
}

.form-group {
    margin-bottom: 25px;
    border: none;
}

.form-group label,
.form-group legend {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-color);
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: var(--success-color);
    color: white;
}

.form-message.error {
    display: block;
    background: var(--error-color);
    color: white;
}

/* Footer */
footer {
    background: #1a252f;
    color: #bdc3c7;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid var(--border-color);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .logo-img {
        max-width: 250px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .column h2 {
        font-size: 1.5rem;
    }
}}

@media (max-width: 480px) {
    .logo-img {
        max-width: 150px;
    }

    .logo-placeholder {
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .two-column {
        padding: 30px 15px;
        gap: 20px;
    }

    .column {
        padding: 15px;
    }

    .contact-container {
        padding: 0 10px;
    }
}
