/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #18181b;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.text-lime {
    color: #a3e635;
}

.text-white {
    color: #ffffff;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
    padding: 1.25rem 0;
}

.header.scrolled {
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #a3e635;
}
.nav-dropdown {
    position: relative;
}

.nav-dropdown-head {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    cursor: pointer;
    font-size: 12px;
    user-select: none;
}

.find-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #a3e635; /* change color if needed */
    transition: color 0.3s;
}

.find-more:hover {
    color: #ffffff;
}

.find-more .arrow {
    transition: transform 0.3s;
}

.find-more:hover .arrow {
    transform: translateX(5px);
}


/* Dropdown hidden by default */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: transparent;
}

/* Show dropdown on arrow hover OR container hover */
.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile dropdown */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    padding: 12px 0;
    text-align: left;
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
}
.capabilities-grid1 {
    display: flex;
    justify-content: center;
}

/* Dropdown container */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown menu – transparent */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: transparent;     /* ❌ no white background */
    box-shadow: none;             /* ❌ no shadow */
    min-width: 220px;
    display: none;
    flex-direction: column;
    z-index: 999;
}

/* Dropdown links */
.dropdown-menu a {
    padding: 8px 0;
    color: #ffffff;               /* change if needed */
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s;
}

/* Hover effect */
.dropdown-menu a:hover {
    color: #a3e635;               /* highlight color */
}

/* Show on hover */
.nav-dropdown:hover .dropdown-menu {
    display: flex;
}


.lang-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .lang-btn {
        display: flex;
    }
}

.lang-btn:hover {
    border-color: #a3e635;
    color: #a3e635;
}

.lang-btn .icon {
    width: 16px;
    height: 16px;
}

.mobile-menu-btn {
    display: block;
    color: #ffffff;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn .icon {
    width: 24px;
    height: 24px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #a3e635;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video {
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-title .text-lime {
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.btn-primary {
    background: #a3e635;
    color: #000000;
}

.btn-primary:hover {
    background: #84cc16;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #a3e635;
    color: #a3e635;
}

.btn-full {
    width: 100%;
}

.btn .icon {
    transition: transform 0.3s ease;
}

.btn:hover .icon {
    transform: translateX(4px);
}

/* Section Styles */
.section {
    padding: 6rem 0;
    background: #18181b;
}

.section-label {
    color: #a3e635;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 42rem;
}

/* About Section */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #a3e635;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Video Showcase Section */
.video-section {
    background: #09090b;
    padding: 6rem 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000000;
}

@media (min-width: 768px) {
    .video-wrapper {
        border-radius: 1.5rem;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: #27272a;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #3f3f46;
}

.service-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* Capabilities Section */
.capabilities-section {
    background: #1e293b;
}

.capabilities-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.capability-item {
    background: #27272a;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.capability-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.capability-content {
    padding: 2rem;
}

.capability-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a3e635;
    margin-bottom: 1rem;
}

.capability-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-content ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.capability-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a3e635;
    font-weight: bold;
}

.capabilities-gallery {
    margin-top: 4rem;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0.5rem;
    background: #27272a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(163, 230, 53, 0.3);
}

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

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

/* Portfolio Section */
.portfolio-section {
    background: #09090b;
}

.portfolio-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #27272a;
}

.portfolio-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24, 24, 27, 0.9);
    padding: 1rem;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-label {
    opacity: 0;
}

.portfolio-category {
    color: #a3e635;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}

.portfolio-overlay .portfolio-category {
    margin-bottom: 0.25rem;
}

.portfolio-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.portfolio-overlay h3 {
    font-size: 1.25rem;
}

/* Partners Section */
.partners-section {
    background: #f8fafc;
    padding: 6rem 0;
}

/* Partners List Section */
.partners-list-section {
    background: #ffffff;
    padding: 6rem 0;
}

.partners-list-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .partners-list-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .partners-list-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partner-name {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
    cursor: default;
}

.partner-name:hover {
    background: #059669;
    color: #ffffff;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.2);
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.partners-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .partners-title {
        font-size: 3rem;
    }
}

.partners-title-accent {
    color: #059669;
}

.partners-description {
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
}

/* Partners Marquee Wrapper */
.partners-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 2rem 0;
}

.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.partners-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

.partners-marquee {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.partners-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.6);
    border: 1px solid #e2e8f0;
}

.partner-logo-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.partner-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 768px) {
    .partner-logo-item {
        width: 150px;
        height: 100px;
        padding: 1rem 1.5rem;
    }
    
    .partners-marquee {
        gap: 2rem;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a3e635;
}

.form-group textarea {
    resize: none;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: #27272a;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #a3e635;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    padding-top: 0.75rem;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
}

.footer-content {
    padding: 4rem 0;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col-wide {
    grid-column: span 2;
}

@media (min-width: 1024px) {
    .footer-col-wide {
        grid-column: span 1;
    }
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #27272a;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff;
}

.social-link:hover {
    background: #a3e635;
    color: #000000;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #a3e635;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #a3e635;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid #27272a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.scroll-top-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: #a3e635;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000000;
}

.scroll-top-btn:hover {
    background: #84cc16;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.toast-icon {
    color: #a3e635;
    flex-shrink: 0;
}

.toast-message {
    font-size: 0.875rem;
}

/* Focus States */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #a3e635;
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #18181b;
}

::-webkit-scrollbar-thumb {
    background: #a3e635;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #84cc16;
}

/* Selection */
::selection {
    background-color: #a3e635;
    color: #000000;
}

/* RTL Support */
body.rtl {
    direction: rtl;
}

body.rtl .container {
    direction: rtl;
}

body.rtl .header-content,
body.rtl .hero-buttons,
body.rtl .about-grid,
body.rtl .services-grid,
body.rtl .contact-grid,
body.rtl .footer-content {
    direction: rtl;
}

body.rtl .desktop-nav {
    direction: rtl;
}

body.rtl .lang-btn {
    direction: rtl;
}

body.rtl .form-row {
    direction: rtl;
}

body.rtl .contact-item,
body.rtl .footer-contact-item {
    direction: rtl;
    text-align: right;
}

body.rtl .contact-icon,
body.rtl .footer-contact-item svg {
    margin-left: 0.75rem;
    margin-right: 0;
}

body.rtl .partners-marquee {
    direction: rtl;
}

body.rtl .partners-marquee-wrapper::before {
    left: auto;
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

body.rtl .partners-marquee-wrapper::after {
    right: auto;
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.map-link {
    color: #a3e635;        /* CNC orange */
    font-weight: 400;
}

.map-link:hover {
    color: #a3e635;
}
