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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d7a4f;
    --accent-color: #52b788;
    --dark-bg: #0f2419;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #6c757d;
    --border-color: #dee2e6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Navigation */
.navbar {
    background: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 0.8rem 0;
}

.navbar.menu-open {
    z-index: 1000;
}

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

.nav-brand h1 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: text-shadow 0.4s ease;
}

.navbar.scrolled .nav-brand h1 {
    text-shadow: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.4s ease;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.navbar.scrolled .nav-link {
    text-shadow: none;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.language-switcher-mobile {
    display: none;
}

.language-switcher-desktop {
    display: flex;
}

.lang-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(82, 183, 136, 0.8);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.navbar.scrolled .lang-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    text-shadow: none;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.navbar.scrolled .hamburger span {
    box-shadow: none;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(15, 36, 25, 0.3) 0%,
        rgba(26, 77, 46, 0.7) 40%,
        rgba(26, 77, 46, 0.85) 70%,
        rgba(15, 36, 25, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5), 0 0 30px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.trust-badge {
    position: absolute;
    bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.trust-badge-left {
    left: 3rem;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.trust-badge-right {
    right: 3rem;
    animation: slideInRight 1s ease-out 0.7s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-light);
}

.trust-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trust-text strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.trust-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(82, 183, 136, 0.4);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

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

.service-card {
    background: var(--light-bg);
    padding: 0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(82, 183, 136, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    padding: 0 2rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    padding: 0 2rem 2rem;
}

/* Fleet Section */
.fleet {
    padding: 5rem 0;
    background: var(--light-bg);
}

.fleet-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.fleet-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

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

.fleet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 77, 46, 0.95));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fleet-item:hover .fleet-overlay {
    transform: translateY(0);
}

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

.fleet-overlay p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-cta-wrapper h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-phone {
    border-color: var(--accent-color);
}

.cta-phone:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.cta-phone:hover svg,
.cta-phone:hover .cta-text {
    color: var(--text-light);
}

.cta-email {
    border-color: var(--secondary-color);
}

.cta-email:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta-email:hover svg,
.cta-email:hover .cta-text {
    color: var(--text-light);
}

.cta-btn svg {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.cta-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar .container {
        flex-wrap: wrap;
        position: relative;
    }

    .nav-brand {
        order: 1;
        flex: 0 0 auto;
    }

    .hamburger {
        order: 2;
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(15, 36, 25, 0.98), rgba(26, 77, 46, 0.98));
        backdrop-filter: blur(10px);
        text-align: center;
        padding: 6rem 2rem 3rem;
        gap: 2rem;
        order: 4;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 0.8rem;
        width: 100%;
        max-width: 400px;
        border-radius: 10px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-link:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active .nav-link:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        background: rgba(82, 183, 136, 0.2);
        transform: scale(1.05);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .language-switcher-desktop {
        display: none;
    }

    .language-switcher-mobile {
        display: flex;
        gap: 0.8rem;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        width: 100%;
    }

    .nav-menu.active .language-switcher-mobile {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.35s;
    }

    .language-switcher-mobile .lang-btn {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(82, 183, 136, 0.8);
    }

    .language-switcher-mobile .lang-btn:hover,
    .language-switcher-mobile .lang-btn.active {
        background: var(--accent-color);
        border-color: var(--accent-color);
        transform: scale(1.1);
    }

    .hamburger {
        z-index: 1001;
        position: relative;
    }

    .hamburger.active span {
        background: var(--text-light);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

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

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .trust-badge {
        padding: 1rem 1.3rem;
        bottom: 2rem;
    }

    .trust-badge-left {
        left: 2rem;
    }

    .trust-badge-right {
        right: 2rem;
    }

    .trust-icon {
        width: 45px;
        height: 45px;
    }

    .trust-icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-text strong {
        font-size: 1rem;
    }

    .trust-text span {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .fleet-gallery {
        grid-template-columns: 1fr;
    }

    .cta-btn {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .cta-label {
        font-size: 0.85rem;
    }

    .cta-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .nav-brand h1 {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }

    .trust-badge {
        padding: 0.8rem 1rem;
        bottom: 1.5rem;
        max-width: calc(50% - 1.5rem);
    }

    .trust-badge-left {
        left: 1rem;
    }

    .trust-badge-right {
        right: 1rem;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
    }

    .trust-icon svg {
        width: 22px;
        height: 22px;
    }

    .trust-text strong {
        font-size: 0.9rem;
    }

    .trust-text span {
        font-size: 0.75rem;
    }

    .contact-cta-wrapper h3 {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
        flex-direction: row;
        align-items: center;
    }

    .cta-btn svg {
        width: 20px;
        height: 20px;
    }

    .cta-label {
        font-size: 0.75rem;
    }

    .cta-value {
        font-size: 1rem;
        word-break: break-all;
    }

    .cta-text {
        gap: 0.2rem;
    }
}

@media (max-width: 400px) {
    .nav-brand h1 {
        font-size: 0.9rem;
    }

    .language-switcher {
        gap: 0.3rem;
    }

    .lang-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.7rem;
    }

    .trust-badge {
        padding: 0.6rem 0.8rem;
        bottom: 1rem;
        gap: 0.7rem;
    }

    .trust-badge-left {
        left: 0.5rem;
    }

    .trust-badge-right {
        right: 0.5rem;
    }

    .trust-icon {
        width: 35px;
        height: 35px;
    }

    .trust-icon svg {
        width: 20px;
        height: 20px;
    }

    .trust-text strong {
        font-size: 0.8rem;
    }

    .trust-text span {
        font-size: 0.7rem;
    }

    .contact-cta-wrapper h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-btn {
        padding: 0.9rem 1rem;
        gap: 0.7rem;
        border-radius: 10px;
    }

    .cta-btn svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .cta-label {
        font-size: 0.7rem;
    }

    .cta-value {
        font-size: 0.85rem;
        word-break: break-word;
    }

    .cta-text {
        gap: 0.15rem;
        min-width: 0;
        flex: 1;
    }
}