/* CSS Variables for Corporate Colors */
:root {
    --off-white: #f2f4df;
    --identity: #00ff00;
    --dark-green: #0d2d04;
}

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

body {
    font-family: 'Lexend Deca', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: background-color, box-shadow;
    contain: layout style;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 120px;
}

.logo-img {
    width: 120px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-menu li a {
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--identity);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-cta {
    flex: 0 0 auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--identity);
    color: var(--dark-green);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.15s ease;
    box-shadow: 0 0 0 rgba(0, 255, 0, 0);
    cursor: pointer;
}

.cta-button:hover {
    background-color: #66ff66;
    color: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.25);
}

.cta-button:active {
    transform: translateY(0);
    transition: all 0.05s ease;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-top: 0;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-text-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    width: calc(100% - 80px);
    padding: 0 40px;
    transform: translateY(20px);
}

.header-mountain {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.7) 50%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.7) 50%, black 100%);
    animation: slideUpMountain 0.75s ease-out forwards;
    transform: translateY(100px);
    opacity: 0;
}

@keyframes slideUpMountain {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-text-overlay h1 {
    font-family: 'Brawler', serif;
    font-size: 76px;
    color: var(--dark-green);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 40px 0;
    word-wrap: break-word;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.9),
        0 4px 8px rgba(255, 255, 255, 0.8),
        0 8px 16px rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    color: var(--dark-green);
    font-weight: 400;
    line-height: 1.8;
    margin: 0 auto 30px;
    max-width: 600px;
    text-shadow: 
        0 4px 9px rgba(255, 255, 255, 1),
        0 9px 18px rgba(255, 255, 255, 1),
        0 14px 27px rgba(255, 255, 255, 0.95),
        0 18px 36px rgba(255, 255, 255, 0.85),
        0 24px 48px rgba(255, 255, 255, 0.7);
}

.hero-cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--identity);
    color: var(--dark-green);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.15s ease;
    box-shadow: 0 0 0 rgba(0, 255, 0, 0);
    cursor: pointer;
}

.hero-cta-button:hover {
    background-color: #66ff66;
    color: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.25);
}

.hero-cta-button:active {
    transform: translateY(0);
    transition: all 0.05s ease;
}

.hero-cta-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 14px;
    color: var(--dark-green);
    font-weight: 400;
    text-decoration: none;
    position: relative;
    padding-right: 25px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.hero-cta-text::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
    font-size: 16px;
}

.hero-cta-text:hover {
    color: var(--identity);
}

.hero-cta-text:hover::after {
    right: -5px;
}

/* USP Section - Row 2 */
.usp-section {
    min-height: 60vh;
    background-color: var(--off-white);
    padding: 80px 40px;
    content-visibility: auto;
    contain-intrinsic-size: auto 60vh;
}

.section-title {
    font-family: 'Brawler', serif;
    font-size: 48px;
    color: var(--dark-green);
    font-weight: 400;
    text-align: center;
    margin: 0 0 60px 0;
}

.usp-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.usp-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    will-change: transform;
}

.usp-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 15px;
}

.usp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(6%) sepia(28%) saturate(6000%) hue-rotate(90deg) brightness(95%) contrast(105%);
}

.usp-item h3 {
    color: var(--dark-green);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.usp-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Banner - Row 3 */
.cta-banner {
    height: 300px;
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.cta-banner h2,
.cta-banner img {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-family: 'Brawler', serif;
    font-size: 48px;
    color: white;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 2s ease-out, transform 1s ease-out;
    flex: 1;
    will-change: opacity, transform;
}

.cta-banner h2.animate {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.cta-image-left,
.cta-image-right {
    height: 345px;
    width: auto;
    object-fit: contain;
}

.cta-image-left {
    margin-right: 0;
    position: relative;
    top: 30px;
    transform: translateX(-150px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
    will-change: transform, opacity;
}

.cta-image-left.animate {
    transform: translateX(0);
    opacity: 1;
    will-change: auto;
}

.cta-image-right {
    margin-left: 0;
    transform: translateX(150px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
    transition-delay: 0.2s;
    will-change: transform, opacity;
}

.cta-image-right.animate {
    transform: translateX(0);
    opacity: 1;
    will-change: auto;
}

/* Reviews Section - Row 4 */
.reviews-section {
    min-height: 60vh;
    background-color: var(--off-white);
    padding: 80px 40px;
    content-visibility: auto;
    contain-intrinsic-size: auto 60vh;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reviews-text h2 {
    font-family: 'Brawler', serif;
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 400;
}

.reviews-text h3 {
    font-size: 14px;
    color: var(--dark-green);
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.reviews-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.review-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.review-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.review-content {
    padding: 30px;
}

.stars {
    color: var(--identity);
    font-size: 24px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-weight: 400;
    color: var(--dark-green);
    font-size: 14px;
}

/* Contact Form Section - Row 5 */
.contact-section {
    background-color: white;
    padding: 80px 40px;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

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

.form-container h2 {
    font-family: 'Brawler', serif;
    font-size: 42px;
    color: var(--dark-green);
    margin-bottom: 15px;
    text-align: left;
    font-weight: 400;
}

.form-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    text-align: left;
}

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

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

.form-group label {
    font-size: 14px;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    background-color: transparent;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--dark-green);
}

.submit-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--identity);
    color: var(--dark-green);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 0 0 rgba(0, 255, 0, 0);
}

.submit-button:hover {
    background-color: #66ff66;
    color: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.25);
}

.submit-button:active {
    transform: translateY(0);
    transition: all 0.05s ease;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section - Row 6 */
.map-section {
    height: 300px;
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

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

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: white;
    padding: 60px 40px 20px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    font-weight: 400;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 10px;
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 12px;
    color: white;
}

.footer-logo {
    width: 120px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text-overlay h1 {
        font-size: 48px;
    }
    
    .usp-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 20px;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-text-overlay {
        transform: translateY(0);
        padding: 0 20px;
        width: calc(100% - 40px);
    }
    
    .hero-text-overlay h1 {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-cta-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta-button,
    .hero-cta-text {
        width: 100%;
        text-align: center;
    }
    
    /* Section Adjustments */
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .usp-section {
        padding: 60px 20px;
    }
    
    .usp-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-banner {
        height: auto;
        padding: 40px 20px;
        flex-direction: column;
    }
    
    .cta-banner h2 {
        font-size: 28px;
        padding: 20px 0;
    }
    
    .cta-image-left,
    .cta-image-right {
        height: 200px;
        position: static;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .reviews-section {
        padding: 60px 20px;
    }
    
    .reviews-text h2 {
        font-size: 28px;
    }
    
    .reviews-text h3 {
        font-size: 12px;
    }
    
    .contact-section {
        padding: 60px 20px;
    }
    
    .form-container h2 {
        font-size: 32px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-banner h2 {
        font-size: 24px;
    }
    
    .navbar {
        padding: 10px 0;
    }
}
