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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 76px;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #a4d233 !important;
}

.navbar-brand:hover {
    color: #7fb800 !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #a4d233 !important;
}

.nav-link.active {
    color: #a4d233 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #a4d233;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(45, 45, 45, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7));
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #a4d233;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons .btn {
    min-width: 200px;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #2d2d2d;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

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

/* Welcome Section */
#welcome {
    background-color: #f8f9fa;
}

.section-title {
    color: #2d2d2d;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a4d233 0%, #7fb800 100%);
}

.lead {
    font-size: 1.1rem;
    color: #555;
}

.services-list .service-item {
    font-size: 1.1rem;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.services-list .service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(164, 210, 51, 0.2);
}

.text-primary {
    color: #a4d233 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #a4d233 0%, #7fb800 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(164, 210, 51, 0.4);
    background: linear-gradient(135deg, #7fb800 0%, #a4d233 100%);
}

.btn-outline-primary {
    border-color: #a4d233;
    color: #a4d233;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #a4d233;
    border-color: #a4d233;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(164, 210, 51, 0.4);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(164, 210, 51, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Map */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #a4d233;
    box-shadow: 0 8px 30px rgba(164, 210, 51, 0.3);
}

.pricing-card h3 {
    color: #a4d233;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 20px 0;
}

.price small {
    font-size: 1rem;
    color: #666;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: #a4d233;
    box-shadow: 0 0 0 0.2rem rgba(164, 210, 51, 0.25);
}

.form-label {
    font-weight: 600;
    color: #2d2d2d;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.footer-title {
    color: #a4d233;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.footer-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #a4d233;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #a4d233 !important;
}

.social-links .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    background-color: #a4d233;
    border-color: #a4d233;
    transform: translateY(-3px);
}

/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a4d233 0%, #7fb800 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(164, 210, 51, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.btn-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(164, 210, 51, 0.6);
}

.btn-back-to-top.show {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }
    
    .hero-banner {
        height: 500px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        min-width: 150px;
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

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

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 80px 0 60px;
}

.page-header h1 {
    color: #a4d233;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header .lead {
    color: #f8f9fa;
}
