:root {
    --bg-base: #050505;
    --bg-alt: #0a0a0a;
    --primary: #7ff703;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --border-color: #222222;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --nav-height: 80px;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary);
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(127, 247, 3, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(127, 247, 3, 0.4);
}

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.separator {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 20px 0;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 0 10%;
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.hero-content p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.about-section {
    background-color: var(--bg-alt);
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.8rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary);
    z-index: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.benefit-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    border-bottom: 3px solid var(--primary);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.benefit-card:hover .benefit-icon img {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.process-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: var(--border-color);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-base);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-secondary);
}

.testimonials-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.carousel-container {
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.testimonial-slide {
    width: 33.333%;
    padding: 0 20px;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    flex-shrink: 0;
}

.testimonial-slide.active-slide {
    opacity: 1;
}

.testimonial-content {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(127, 247, 3, 0.5);
}

.gallery-section {
    background-color: var(--bg-base);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    background: var(--bg-alt);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.5s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 25px rgba(127, 247, 3, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
    opacity: 0.85;
}

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

.footer {
    background: #000;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: var(--font-serif);
    font-weight: 600;
}

.footer-links a {
    display: block;
    margin-bottom: 15px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.8rem;
    }
    .about-wrapper {
        flex-direction: column;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding: 0 20px;
    }
    .hero-actions {
        justify-content: center;
    }
    .benefits-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .footer-content {
        flex-direction: column;
    }
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.nav-links.active a {
    font-size: 1.2rem;
    text-align: center;
}
