/* Fonts */
@font-face {
    font-family: 'Neutra Text TF';
    src: url('fonts/NeutraTextTFLight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neutra Text TF';
    src: url('fonts/NeutraTextTFBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Base Variables & Reset */
:root {
    --primary: #ff6600;
    --primary-hover: #ff8533;
    --dark: #0f1115;
    --darker: #060709;
    --black: #000000;
    --gray-900: #1a1c23;
    --gray-800: #2a2d36;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --light: #f3f4f6;
    --white: #ffffff;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.7s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Neutra Text TF', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Feature Cards */
.feature-card {
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1.25rem;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Product Cards */
.products-grid {
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-container {
    aspect-ratio: 4 / 3;
    background-color: var(--gray-900);
    overflow: hidden;
}

.product-badge {
    z-index: 2;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 102, 0, 0.2);
}

.stars {
    color: var(--primary);
    letter-spacing: 2px;
}

/* Footer Improvements */
.footer-logo {
    max-width: 140px;
    height: auto;
    display: block;
}

footer .container {
    align-items: start;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.center {
    justify-content: center;
    align-items: center;
}

.gap-xs {
    gap: 0.5rem;
}

.gap-sm {
    gap: 1rem;
}

.gap-md {
    gap: 1.5rem;
}

.gap-lg {
    gap: 2rem;
}

.gap-xl {
    gap: 3rem;
}

.gap-2xl {
    gap: 4rem;
}

.p-sm {
    padding: 1rem;
}

.p-md {
    padding: 1.5rem;
}

.p-lg {
    padding: 2rem;
}

.p-xl {
    padding: 3rem;
}

.pt-3xl {
    padding-top: 8rem;
}

.pb-xl {
    padding-bottom: 3rem;
}

.pb-sm {
    padding-bottom: 1rem;
}

.py-sm {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-md {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-lg {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-xl {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-2xl {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-3xl {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.mb-xs {
    margin-bottom: 0.5rem;
}

.mb-sm {
    margin-bottom: 1rem;
}

.mb-md {
    margin-bottom: 1.5rem;
}

.mb-lg {
    margin-bottom: 2rem;
}

.mb-xl {
    margin-bottom: 3rem;
}

.mb-2xl {
    margin-bottom: 4rem;
}

.mt-xs {
    margin-top: 0.5rem;
}

.mt-sm {
    margin-top: 1rem;
}

.mt-md {
    margin-top: 1.5rem;
}

.mt-lg {
    margin-top: 2rem;
}

.mt-xl {
    margin-top: 3rem;
}

.mt-3xl {
    margin-top: 6rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-64 {
    height: 16rem;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-90 {
    min-height: 90vh;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.items-start {
    align-items: flex-start;
}

.md-text-right {
    text-align: right;
}

.md-items-end {
    align-items: flex-end;
}

.footer-section-title {
    color: var(--white);
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.md-text-right .footer-section-title::after {
    left: auto;
    right: 0;
}

.bg-dark {
    background-color: var(--dark);
}

.bg-darker {
    background-color: var(--darker);
}

.bg-black {
    background-color: var(--black);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray-900 {
    background-color: var(--gray-900);
}

.bg-dark-glass {
    background-color: rgba(6, 7, 9, 0.95);
    backdrop-filter: blur(10px);
}

.text-light {
    color: var(--light);
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--dark);
}

.text-gray-300 {
    color: var(--gray-300);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-600 {
    color: #4b5563;
}

.text-primary {
    color: var(--primary);
}

.text-xs {
    font-size: 0.875rem;
}

.text-sm {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-bold,
.fw-bold {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.italic {
    font-style: italic;
}

.leading-relaxed {
    line-height: 1.625;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.block {
    display: block;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 1rem;
}

.rounded-2xl {
    border-radius: 1.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.transition {
    transition: all var(--transition-normal);
}

.transition-colors {
    transition: color var(--transition-normal), background-color var(--transition-normal);
}

.transition-transform {
    transition: transform var(--transition-slow);
}

.object-cover {
    object-fit: cover;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-100 {
    opacity: 1;
}

.border {
    border: 1px solid;
}

.border-y {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.border-t {
    border-top: 1px solid;
}

.border-b {
    border-bottom: 1px solid;
}

.border-t-2 {
    border-top: 2px solid;
}

.border-gray-800 {
    border-color: var(--gray-800);
}

.border-gray-900 {
    border-color: var(--gray-900);
}

.border-primary {
    border-color: var(--primary);
}

.border-opacity-30 {
    border-color: rgba(255, 102, 0, 0.3);
}

/* Typography Gradients & FX */
.text-gradient {
    background: linear-gradient(90deg, #fff 0%, var(--primary) 150%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

h1.hero-title {
    font-size: clamp(2.5rem, 4vw, 5rem);
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h2.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 102, 0, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    top: 0;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #4b2008;
}

.nav-logo {
    position: absolute;
    height: 100px;
    top: 0;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.navbar.scrolled .nav-logo {
    position: absolute;
    height: 50px;
    top: -5px;
}

.nav-item {
    font-weight: bold;
    color: var(--gray-300);
    transition: color var(--transition-fast);
    font-size: 1.125rem;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.nav-item:hover {
    color: var(--white);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 51;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.mobile-menu {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 10s linear;
}

.carousel-item.active img {
    transform: scale(1.1);
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.hero .container {
    z-index: 4;
}

/* Glass Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.3);
}

/* Testimonials Container */
.testimonials-container {
    padding-top: 10px;
}

/* Group Hovers */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:text-primary {
    color: var(--primary);
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.link-arrow svg {
    transition: transform var(--transition-fast);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* Glow Backgrounds */
.filter-blur-3xl {
    filter: blur(100px);
}

.transform {
    transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0));
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
}

.translate-y-1\/2 {
    --tw-translate-y: 50%;
}

.translate-x-1\/2 {
    --tw-translate-x: 50%;
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
}

/* Snap Scrolling */
.snap-mandatory {
    scroll-snap-type: x mandatory;
}

.snap-center {
    scroll-snap-align: center;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.w-80 {
    width: 22rem;
}

/* Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
@keyframes pulse-slow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.animate-pulse-slow {
    animation: pulse-slow 3s infinite;
}

.reveal,
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active,
.animate-fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

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

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

.delay-100 {
    transition-delay: 100ms;
    animation-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
    animation-delay: 200ms;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-2, .footer-grid {
        grid-template-columns: 1fr;
    }

    .md-text-right {
        text-align: left;
    }

    .md-items-end {
        align-items: flex-start;
    }

    .md-text-right {
        text-align: left;
    }

    .md-items-end {
        align-items: flex-start;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    h1.hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-800);
    background-color: var(--darker);
    color: var(--white);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.bg-green-600 {
    background-color: #059669;
}

.bg-red-600 {
    background-color: #dc2626;
}

.rounded-md {
    border-radius: 0.375rem;
}

.p-4 {
    padding: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Language Flag Selector */
.lang-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-flag-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
    user-select: none;
}

.lang-flag-btn:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(15, 17, 21, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.5rem;
    min-width: 130px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.lang-dropdown-menu.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--gray-300);
    transition: background-color var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.lang-dropdown-menu a:hover {
    background-color: rgba(255, 102, 0, 0.15);
    color: var(--white);
}

.lang-dropdown-menu a.active-lang {
    color: var(--primary);
}

.lang-dropdown-menu a .flag-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .lang-selector-wrapper {
        margin-top: 0.5rem;
    }

    .lang-dropdown-menu {
        position: fixed;
        top: auto;
        right: 50%;
        transform: translateX(50%) translateY(-8px) scale(0.95);
        left: auto;
    }

    .lang-dropdown-menu.open {
        transform: translateX(50%) translateY(0) scale(1);
    }
}

/* Modern Footer Enhancements */
#main-footer {
    position: relative;
    z-index: 10;
    padding: 5rem 0 3rem;
}

#main-footer .container {
    display: block;
}

.footer-section-title {
    color: var(--white);
    font-weight: bold;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.md-text-right .footer-section-title::after {
    left: auto;
    right: 0;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--gray-300);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
}

.footer-description {
    color: var(--gray-400);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 450px;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-600);
    font-size: 1rem;
}

@media (min-width: 993px) {
    .md-text-right {
        text-align: right;
    }

    .md-items-end {
        align-items: flex-end;
    }

    .md-justify-end {
        justify-content: flex-end;
    }

    .footer-link:hover {
        transform: translateX(-8px);
    }
}

@media (max-width: 992px) {
    #main-footer {
        padding: 3rem 0;
    }

    .footer-link:hover {
        transform: translateX(8px);
    }
}

