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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    color: white;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background-image: url('photos/00.jpg');
    background-size: cover;
    background-position: center;
    animation: heroSlowPan 20s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 66, 37, 0.8) 0%, rgba(26, 92, 58, 0.6) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes heroSlowPan {
    0% {
        transform: translateX(-10%) scale(1.1);
    }
    100% {
        transform: translateX(0%) scale(1.1);
    }
}

.hero-content {
    padding: 40px 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1a5c3a;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.hero-stats {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.hero-stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.hero-stat:last-child {
    margin-bottom: 0;
}

.hero-stat span:first-child {
    opacity: 0.9;
}

.hero-stat span:last-child {
    font-weight: 600;
}

.intro {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

.specs {
    padding: 60px 0;
    background: white;
}

.specs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: #333;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.specs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.spec-highlight {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.spec-highlight:hover {
    transform: translateY(-5px);
}

.spec-highlight h3 {
    font-size: 1.3rem;
    color: #1a5c3a;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.spec-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-highlight li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.spec-highlight li:last-child {
    border-bottom: none;
}

.spec-highlight li:before {
    content: "✈";
    color: #1a5c3a;
    margin-right: 10px;
    font-size: 0.9rem;
}

.equipment {
    padding: 80px 0;
    background: #f8f9fa;
}

.equipment h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: #333;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.equipment-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.equipment-item h3 {
    font-size: 1.3rem;
    color: #1a5c3a;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.equipment-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-item li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.equipment-item li:last-child {
    border-bottom: none;
}

.equipment-item li:before {
    content: "✈";
    color: #1a5c3a;
    margin-right: 10px;
    font-size: 0.9rem;
}

.gallery {
    padding: 80px 0;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 300;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
}

.lightbox img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px 15px;
    transition: background 0.3s ease;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 15px 10px;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
    
    .lightbox-close {
        font-size: 1.5rem;
        top: -35px;
    }
}

.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 300;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    padding: 40px 30px;
    background: linear-gradient(135deg, #004225 0%, #1a5c3a 100%);
    color: white;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #002817 0%, #1a5c3a 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin: 0 0 30px 0;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.4;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }
    
    .hero-background {
        width: 150%;
    }
    
    @keyframes heroSlowPan {
        0% {
            transform: translateX(-20%) scale(1.2);
        }
        100% {
            transform: translateX(0%) scale(1.2);
        }
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero, .specs, .gallery, .features, .contact {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}