/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Krona One', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 10000;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 12px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

.cookie-btn.decline {
    background: #f44336;
    color: white;
}

.cookie-btn.decline:hover {
    background: #da190b;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    color: #6B8E23;
    font-weight: normal;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #6B8E23;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: normal;
}

.nav-menu a:hover {
    color: #4F6B19;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6B8E23;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.85) 0%, rgba(107, 142, 35, 0.75) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: normal;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #6B8E23;
    color: white;
}

.about h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: normal;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #6B8E23;
    color: white;
}

.services-overview h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: normal;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    font-size: 18px;
    font-weight: normal;
    color: white;
}

/* Detailed Services */
.detailed-services {
    padding: 0;
    background: white;
}

.services-wrapper {
    display: flex;
    min-height: 100vh;
}

.services-sidebar {
    background: #6B8E23;
    color: white;
    width: 400px;
    padding: 100px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.services-sidebar h2 {
    font-size: 48px;
    font-weight: normal;
    line-height: 1.2;
    text-align: left;
}

.services-content {
    flex: 1;
    padding: 60px 40px;
    background: #f8f9fa;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-detail:hover {
    transform: translateX(10px);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #6B8E23;
    font-weight: normal;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-image-detail {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.85) 0%, rgba(107, 142, 35, 0.75) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.contact h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: white;
    font-weight: normal;
}

.contact-form {
    max-width: 600px;
    width: 100%;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Krona One', sans-serif;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: rgba(76, 175, 80, 0.8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-family: 'Krona One', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(76, 175, 80, 1);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: white;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 32px;
    color: #6B8E23;
    margin-bottom: 30px;
    font-weight: normal;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #6B8E23;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4F6B19;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-legal a {
    color: #6B8E23;
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #4F6B19;
}

.footer-copyright p {
    font-size: 14px;
    color: #6B8E23;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-wrapper {
        flex-direction: column;
    }
    
    .services-sidebar {
        width: 100%;
        padding: 60px 40px;
        text-align: center;
    }
    
    .services-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .about h2,
    .services-overview h2,
    .contact h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-detail {
        flex-direction: column;
        text-align: center;
    }

    .service-image-detail {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .services-sidebar {
        padding: 40px 20px;
    }

    .services-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about h2,
    .services-overview h2,
    .contact h2 {
        font-size: 28px;
    }

    .service-info h3 {
        font-size: 20px;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .form-group input,
    .submit-btn {
        font-size: 16px;
        padding: 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}