* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #ffffff;
    --secondary-white: #f8f9fa;
    --accent-green: #2d5f3f;
    --light-green: #5a8f6f;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/PHOTO-2025-10-14-09-41-17 2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-green);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 2px solid var(--accent-green);
    text-transform: uppercase;
    font-weight: 400;
}

.cta-button:hover {
    background-color: white;
    color: var(--accent-green);
    border-color: white;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 4px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #1e8449;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.9;
    font-weight: 300;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 100px;
    padding: 0 20px;
}

.feature {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #1e8449;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-text {
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background-color: var(--secondary-white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-weight: 300;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Innovation Section */
.innovation {
    padding: 120px 20px;
    background-color: var(--accent-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.innovation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.innovation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.innovation .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid white;
    padding-left: 15px;
}

.innovation .section-title {
    color: white;
}

.innovation-list {
    list-style: none;
    margin: 40px 0;
}

.innovation-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.check-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    background: transparent;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 40px;
    height: 40px;
}

.innovation-list strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.innovation-list p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

.innovation-cta {
    background-color: white;
    color: var(--accent-green);
    border-color: white;
}

.innovation-cta:hover {
    background-color: transparent;
    color: white;
}

.innovation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.innovation-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.innovation-image:hover {
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .innovation-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .innovation-cta {
        display: table;
        margin: 0 auto;
    }
}

.specs {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.spec-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--secondary-white);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background-color: var(--accent-green);
    color: white;
}

.spec-number {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 15px;
    color: var(--accent-green);
    transition: color 0.3s ease;
}

.spec-item:hover .spec-number {
    color: white;
}

.spec-label {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Contact Section */
.contact {
    padding: 120px 20px;
    background-color: var(--secondary-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
}

.contact-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: white;
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 2px solid white;
    text-transform: uppercase;
    font-weight: 400;
}

.contact-button:hover {
    background-color: transparent;
    color: white;
}

/* Footer */
/* Footer */
.footer {
    padding: 80px 20px 40px;
    background-color: #1a1a1a;
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-brand-logo {
    width: 80px;
    height: auto;
    /* Adjust visibility if needed, assuming light logo */
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-logo-text {
    font-size: 2.2rem;
    font-weight: 200;
    letter-spacing: 8px;
    color: white;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-text {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 300;
    color: white;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .contact-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map {
        height: 400px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Placeholder for images */
.placeholder-image {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    height: 100%;
}

/* Responsive Visibility */
.mobile-only {
    display: none !important;
}

@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-block !important;
    }

    /* Specific adjustment for innovation CTA on mobile to match style */
    .innovation-cta.mobile-only {
        display: table !important;
        margin: 40px auto 0;
    }
}