@font-face {
    font-family: 'NouvelR';
    src: url('../fonts/NouvelR-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NouvelR';
    src: url('../fonts/NouvelR-Book.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NouvelR';
    src: url('../fonts/NouvelR-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NouvelR';
    src: url('../fonts/NouvelR-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'NouvelR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    color: #171a20;
    overflow-x: hidden;
    line-height: 1.2;
}

#goog-gt-tt, 
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.skiptranslate,
.goog-te-ftab,
iframe.goog-te-banner-frame,
#google_translate_element2 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #171a20 !important;
    letter-spacing: 2px;
    text-decoration: none;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: #171a20 !important;
    font-weight: 500;
    font-size: 14px;
    margin: 0 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: #666 !important;
}

.navbar-nav .nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.language-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(23, 26, 32, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.language-toggle:hover {
    background: rgba(23, 26, 32, 0.2);
    transform: scale(1.05);
}

.language-toggle .globe-icon {
    font-size: 18px;
    color: #171a20;
    transition: all 0.3s ease;
}

.language-toggle .flag-icon {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.language-toggle:hover .globe-icon {
    opacity: 0;
    transform: scale(0.8);
}

.language-toggle:hover .flag-icon {
    opacity: 1;
    transform: scale(1.1);
}

.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.language-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.language-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
    font-size: 18px;
}

.modal-close:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    transform: scale(1.1);
}

.modal-title {
    color: #171a20;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.modal-subtitle {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 400;
}

.modal-flags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.modal-flag-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.1), transparent);
    transition: left 0.6s ease;
}

.modal-flag-item:hover::before {
    left: 100%;
}

.modal-flag-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 195, 74, 0.3);
}

.modal-flag-item.active {
    border-color: #8bc34a;
    background: linear-gradient(145deg, #8bc34a 0%, #7cb342 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
}

.modal-flag-icon {
    font-size: 50px;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.modal-flag-item:hover .modal-flag-icon {
    transform: scale(1.1);
}

.modal-flag-text {
    font-size: 8px;
    font-weight: 400;
    text-align: center;
    color: #171a20;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-flag-item.active .modal-flag-text {
    color: white;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-width: none;
    }

    .modal-flags {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .modal-flag-item {
        padding: 20px 15px;
    }

    .modal-flag-icon {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .modal-flag-text {
        font-size: 7px;
    }

    .modal-title {
        font-size: 20px;
    }
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
    position: relative;
    width: 30px;
    height: 30px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    padding: 0;
    list-style: none;
}

.mobile-menu > li {
    border-bottom: 1px solid #333;
}

.mobile-menu > li > a {
    color: #bbb;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    background: none;
}

.mobile-menu > li > a:hover {
    color: white;
    background: #2a2a2a;
}

.mobile-menu .dropdown-toggle {
    position: relative;
}

.mobile-menu .dropdown-toggle .arrow-icon {
    color: #8bc34a;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.mobile-menu .dropdown-toggle.active .arrow-icon,
.mobile-menu .dropdown-toggle .arrow-icon.rotated {
    transform: rotate(90deg);
}

.mobile-menu a::before,
.mobile-menu a::after {
    display: none !important;
    content: none !important;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: #0f0f0f;
    transition: max-height 0.3s ease;
    list-style: none;
    padding: 0;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu li {
    border-bottom: 1px solid #222;
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    color: #999;
    text-decoration: none;
    padding: 0.75rem 2rem;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    color: #8bc34a;
    background: #1a1a1a;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 2px solid #333;
    text-align: center;
}

.mobile-menu-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.mobile-contact {
    padding: 2rem 1.5rem;
    border-top: 2px solid #333;
    margin-top: 1rem;
}

.mobile-contact h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mobile-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-contact-list i {
    color: #8bc34a;
    width: 18px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mobile-contact-list span {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.4;
}

.mobile-language-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-language-item:hover {
    background: #2a2a2a;
}

.mobile-language-item i {
    color: #8bc34a;
    font-size: 18px;
}

.mobile-language-item span {
    color: #bbb;
    font-size: 1rem;
    font-weight: 500;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 9999;
    list-style: none;
    margin: 0;
    display: block;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #171a20;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: none;
    width: 100%;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #f8f9fa;
    color: #171a20;
    text-decoration: none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
}

.dropdown-item .fa-chevron-right {
    font-size: 10px;
    color: #666;
}

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    z-index: 5;
    position: relative;
    max-width: 600px;
    padding: 0 2rem;
    margin-top: auto;
    margin-bottom: 12rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-tesla {
    background: #171a20;
    color: white;
    border: 3px solid #171a20;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-tesla:hover {
    background: transparent;
    color: #171a20;
}

.btn-tesla-outline {
    background: transparent;
    color: white;
    border: 3px solid white;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-tesla-outline:hover {
    background: white;
    color: #171a20;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-arrow-left {
    left: 40px;
}

.nav-arrow-right {
    right: 40px;
}

.nav-arrow i {
    color: white;
    font-size: 18px;
}

.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

.spacing-15 {
    height: 15px;
}

.carousel-section {
    background: #f8f9fa;
    padding: 0 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 70vh;
    min-height: 600px;
    padding: 0 2rem 60px 2rem;
    overflow: hidden;
}

.vehicle-slider {
    display: flex;
    height: 100%;
    width: 100%;
    gap: 15px;
}

.vehicle-card {
    flex: 0 0 calc(50% - 7.5px);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.vehicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: transparent;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.vehicle-category {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.vehicle-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn-vehicle {
    background: #3366cc;
    color: white;
    border: 2px solid #3366cc;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.btn-vehicle:hover {
    background: transparent;
    color: #3366cc;
}

.btn-vehicle-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.btn-vehicle-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #171a20;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.2);
}

.slider-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav-left {
    left: 20px;
}

.slider-nav-right {
    right: 20px;
}

.slider-nav i {
    color: #171a20;
    font-size: 18px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #171a20;
    transform: scale(1.1);
}

.rectangle-section {
    padding: 0 2rem;
    background: #f8f9fa;
}

.rectangle-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 200px;
}

.rectangle-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.rectangle-card-1 {
}

.rectangle-card-2 {
}

.rectangle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(0,0,0,0.5);
    color: white;
}

.rectangle-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.rectangle-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.rectangle-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.rectangle-button:hover {
    background: white;
    color: #171a20;
}

.static-cards-section {
    padding: 0 2rem;
    background: #f8f9fa;
}

.static-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 60vh;
    min-height: 400px;
}

.static-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.static-card-1 {
}

.static-card-2 {
}

.static-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.static-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.static-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.static-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.static-button:hover {
    background: white;
    color: #171a20;
}

.footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 4rem 0 2rem 0;
    position: relative;
}

.footer-main {
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-newsletter {
    background: transparent;
    padding: 0;
    border: none;
}

.footer-newsletter h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 350px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: white;
    font-size: 0.9rem;
    outline: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-input:focus {
    border-color: #8bc34a;
}

.newsletter-btn {
    background: #8bc34a;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #7cb342;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact-list i {
    color: #8bc34a;
    width: 16px;
    font-size: 0.9rem;
}

.footer-contact-list span {
    color: #bbb;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #888;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    background: #555;
    color: #bbb;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #8bc34a;
    color: white;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #8bc34a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #7cb342;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-newsletter {
        order: 1;
        margin-bottom: 1rem;
    }

    .footer-newsletter h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer-newsletter p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form {
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: white;
    }

    .footer-links li {
        margin-bottom: 0.7rem;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-contact-list {
        max-width: 250px;
        margin: 0 auto;
        text-align: left;
    }

    .footer-contact-list li {
        margin-bottom: 1rem;
        justify-content: flex-start;
    }

    .footer-contact-list span {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .footer-social {
        order: 2;
        margin: 1rem 0;
    }

    .footer-links-bottom {
        order: 3;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        order: 1;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .newsletter-btn {
        padding: 12px 16px;
    }

    .language-toggle {
        margin-left: 0.5rem;
        width: 30px;
        height: 30px;
    }

    .language-toggle i {
        font-size: 16px;
    }
}

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

    .hero-content {
        margin-bottom: 8rem;
    }

    .vehicle-card {
        flex: 0 0 100%;
    }

    .rectangle-images,
    .static-cards {
        grid-template-columns: 1fr;
        height: auto;
    }

    .rectangle-card {
        height: 200px;
    }

    .static-card {
        height: 50vh;
        min-height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .carousel-container {
        padding: 0 1rem 60px 1rem;
    }

    .rectangle-section,
    .static-cards-section {
        padding: 0 1rem;
    }

    .navbar-nav {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }
}

@media (min-width: 769px) {
    .navbar-toggler,
    .mobile-sidebar,
    .mobile-overlay {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

/* Video Page Styles */
.video-hero,
.gallery-hero,
.contact-hero,
.products-hero,
.news-hero {
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.video-hero::before,
.gallery-hero::before,
.contact-hero::before,
.products-hero::before,
.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.video-hero .container,
.gallery-hero .container,
.contact-hero .container,
.products-hero .container,
.news-hero .container {
    position: relative;
    z-index: 2;
}

.video-hero h1,
.gallery-hero h1,
.contact-hero h1,
.products-hero h1,
.news-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.video-hero p,
.gallery-hero p,
.contact-hero p,
.products-hero p,
.news-hero p {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.video-filters {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #171a20;
    color: #171a20;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #171a20;
    color: white;
}

.video-grid {
    padding: 3rem 0;
    background: #f8f9fa;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #171a20;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #171a20;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
}

.video-duration {
    background: #171a20;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.video-player {
    width: 100%;
    height: 50vh;
    min-height: 300px;
}

/* Products Page Styles - Modern Cards */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #171a20;
    margin-bottom: 0.8rem;
    text-align: center;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0;
}

.product-details {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-details.active {
    display: block;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.product-features i {
    color: #8bc34a;
    font-size: 0.8rem;
}

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

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8bc34a;
}

.product-btn {
    background: #171a20;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #8bc34a;
}

/* Gallery Page Styles - Simple Grid */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
    height: 250px;
    transition: all 0.3s ease;
}

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

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Gallery Detail Page */
.gallery-detail {
    padding: 2rem 0;
    background: #f8f9fa;
}

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

.gallery-detail-item {
    background-size: cover;
    background-position: center;
    height: 300px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-detail-item:hover {
    transform: scale(1.02);
}

/* Contact Page Styles - Modern */
.contact-content {
    padding: 3rem 0;
    background: #f8f9fa;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #8bc34a;
    color: white;
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #8bc34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: white;
    color: #8bc34a;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #171a20;
}

.contact-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-item:hover .contact-details h4,
.contact-item:hover .contact-details p {
    color: white;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #171a20;
    margin-bottom: 0.4rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #8bc34a;
    background: white;
}

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

.submit-btn {
    background: #8bc34a;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #7cb342;
    transform: translateY(-2px);
}

/* News Page Styles */
.news-grid {
    padding: 3rem 0;
    background: #f8f9fa;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-info {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #171a20;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
}

.read-more {
    color: #8bc34a;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* News Detail Page */
.news-detail {
    padding: 3rem 0;
    background: white;
}

.news-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #171a20;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-detail-meta {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.news-detail-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.news-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.news-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #171a20;
    margin: 2rem 0 1rem 0;
}

.news-detail-content p {
    margin-bottom: 1.5rem;
}

.back-btn {
    background: #f8f9fa;
    color: #171a20;
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.back-btn:hover {
    background: #8bc34a;
    color: white;
    border-color: #8bc34a;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Contact Page Styles */
.contact-hero {
    height: 60vh;
    background: linear-gradient(135deg, #ff6b35 0%, #e55100 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.contact-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #8bc34a;
    color: white;
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #8bc34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: white;
    color: #8bc34a;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #171a20;
}

.contact-details p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.contact-item:hover .contact-details h4,
.contact-item:hover .contact-details p {
    color: white;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #171a20;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #8bc34a;
    background: white;
}

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

.submit-btn {
    background: #8bc34a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #7cb342;
    transform: translateY(-2px);
}

/* Products Page Styles */
.products-hero {
    height: 60vh;
    background: linear-gradient(135deg, #673ab7 0%, #512da8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.products-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.products-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.products-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #8bc34a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #171a20;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.product-features i {
    color: #8bc34a;
    font-size: 0.8rem;
}

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

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8bc34a;
}

.product-btn {
    background: #171a20;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #8bc34a;
    transform: translateY(-2px);
}

/* About Page Styles */
.about-hero {
    height: 70vh;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.about-hero p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 4rem 0;
    background: white;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #171a20;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.stats-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #8bc34a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #171a20;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-section {
    padding: 4rem 0;
    background: white;
}

.team-member {
    text-align: center;
    margin-bottom: 3rem;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #171a20;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1rem;
    color: #8bc34a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.values-section {
    background: #171a20;
    color: white;
    padding: 4rem 0;
}

.values-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #8bc34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 1.5rem auto;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .video-hero h1,
    .gallery-hero h1,
    .contact-hero h1,
    .products-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero h1 {
        font-size: 2.8rem;
    }

    .video-hero p,
    .gallery-hero p,
    .contact-hero p,
    .products-hero p,
    .about-hero p {
        font-size: 1.1rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }
}

/* Pagination butonları düzeltme - FORCE */
.pagination-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: white !important;
    color: #171a20 !important;
    text-decoration: none !important;
    border: 2px solid #e0e0e0 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.pagination-btn i {
    font-size: 12px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.pagination-btn:hover {
    background: #8bc34a !important;
    color: white !important;
    border-color: #8bc34a !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

.pagination-btn.active {
    background: #171a20 !important;
    color: white !important;
    border-color: #171a20 !important;
}

/* Mobil düzeltme */
@media (max-width: 768px) {
    .pagination-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 12px !important;
    }
    
    .pagination-btn i {
        font-size: 10px !important;
    }
}
/* Pagination listesi düzeltme - nokta kaldırma */
.pagination-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pagination-list li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pagination-list li::before {
    content: none !important;
    display: none !important;
}

.pagination-list li::after {
    content: none !important;
    display: none !important;
}

/* Haber detay içeriği genişletme */
.news-detail-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 2rem 0 !important;
}

.news-detail-content p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    text-align: justify !important;
}

.news-detail-content h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #171a20 !important;
    margin: 2rem 0 1rem 0 !important;
}

/* Container genişliği */
.news-detail .container {
    max-width: 1200px !important;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .news-detail-content {
        padding: 1.5rem 0 !important;
    }
    
    .news-detail-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

a {
	color: #fff;
	text-decoration: none;
}