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

:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #111111;
    --color-bg-card: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-orange: #f97316;
    --color-orange-dark: #ea580c;
    --color-yellow: #facc15;
    --color-green: #22c55e;
    --color-border: #333333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

.text-gradient {
    background: linear-gradient(90deg, var(--color-orange), var(--color-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--color-yellow);
    color: var(--color-bg);
}

.btn-whatsapp {
    background-color: var(--color-green);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    padding: 10px 0;
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--color-orange);
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--color-yellow);
    letter-spacing: 3px;
}

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

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 100px;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 50px;
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--color-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge span:last-child {
    color: var(--color-orange);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.hero-text {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-text span {
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 16px;
}

.hero-location i {
    color: var(--color-orange);
}

.hero-image {
    display: block;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(249, 115, 22, 0.5);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, var(--color-orange), var(--color-yellow));
    border-radius: 16px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.hero-image-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.caption-title {
    color: var(--color-orange);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.caption-text {
    color: var(--color-text-muted);
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-orange);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-orange);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-yellow), var(--color-orange));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('images/warehouse.png');
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    text-align: center;
    color: white;
    position: relative;
}

.page-header h1 {
    font-size: 4rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Nav Active State (Modified) */
.nav-links a.active {
    color: var(--color-orange) !important;
}

.nav-links a.active::after {
    width: 100%;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('images/engine_parts.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 50px;
    color: var(--color-orange);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
}

.section-text {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-5px);
}

.service-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: var(--color-orange);
}

.service-icon.icon-yellow {
    background-color: rgba(250, 204, 21, 0.2);
}

.service-icon.icon-yellow i {
    color: var(--color-yellow);
}

.service-content h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.service-features i {
    color: var(--color-orange);
}

.why-choose {
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px;
}

.why-choose h3 {
    text-align: center;
    font-size: 28px;
    color: white;
    margin-bottom: 40px;
}

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

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

.why-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.why-icon i {
    font-size: 24px;
    color: var(--color-orange);
}

.why-item h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Products Section */
.products {
    background-color: var(--color-bg);
}

.products-filter {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.search-box input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-orange);
}

.search-box input::placeholder {
    color: var(--color-text-muted);
}

.filter-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-buttons i {
    color: var(--color-orange);
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.product-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-card), transparent);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background-color: var(--color-green);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1;
}

.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(249, 115, 22, 0.2);
    color: var(--color-orange);
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-name {
    color: var(--color-orange);
}

.product-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-price {
    color: var(--color-orange);
    font-weight: 600;
}

.card-btn-whatsapp {
    width: 40px;
    height: 40px;
    background-color: var(--color-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.card-btn-whatsapp:hover {
    transform: scale(1.1);
    background-color: #16a34a;
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.4);
}

.card-btn-whatsapp i {
    font-size: 18px;
}

.products-note {
    text-align: center;
    margin-top: 40px;
}

.products-note p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Product Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--color-orange);
}

.modal-body {
    padding: 0;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-details {
    padding: 32px;
}

.modal-category {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 28px;
    color: white;
    margin-bottom: 16px;
}

.modal-desc {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.modal-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(34, 197, 94, 0.2);
    color: var(--color-green);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.modal-price {
    font-size: 28px;
    color: var(--color-orange);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}

.quick-contact-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.whatsapp-banner,
.facebook-banner {
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.whatsapp-banner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.facebook-banner {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(12, 102, 235, 0.1));
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.whatsapp-banner i,
.facebook-banner i {
    font-size: 40px;
    margin-bottom: 16px;
}

.whatsapp-banner i {
    color: #22c55e;
}

.facebook-banner i {
    color: #1877f2;
}

.whatsapp-banner h3,
.facebook-banner h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
}

.whatsapp-banner p,
.facebook-banner p {
    color: var(--color-text-muted);
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto 24px;
}

.btn-facebook {
    background-color: #1877f2;
    color: white;
}

.btn-facebook:hover {
    background-color: #0c66eb;
    transform: translateY(-2px);
}

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

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.contact-info {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.contact-info h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-orange);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.info-card.info-whatsapp {
    border-color: rgba(34, 197, 94, 0.5);
}

.info-card.info-facebook {
    border-color: rgba(24, 119, 242, 0.5);
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(249, 115, 22, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--color-orange);
}

.info-whatsapp .info-icon {
    background-color: rgba(34, 197, 94, 0.2);
}

.info-whatsapp .info-icon i {
    color: var(--color-green);
}

.info-facebook .info-icon {
    background-color: rgba(24, 119, 242, 0.2);
}

.info-facebook .info-icon i {
    color: #1877f2;
}

.recommended,
.fb-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
    padding: 2px 8px;
    border-radius: 4px;
}

.recommended {
    color: var(--color-green);
    background-color: rgba(34, 197, 94, 0.1);
}

.fb-badge {
    color: #1877f2;
    background-color: rgba(24, 119, 242, 0.1);
}

.info-content h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 6px;
}

.info-content p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.recommended {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-green);
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
}

.quick-buttons {
    display: flex;
    gap: 12px;
}

.contact-form {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group textarea {
    resize: none;
}

/* Footer */
.footer {
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 4px;
}

.footer-logo p {
    color: var(--color-yellow);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.footer-text {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link.whatsapp {
    background-color: rgba(34, 197, 94, 0.2);
    color: var(--color-green);
}

.social-link.whatsapp:hover {
    background-color: var(--color-green);
    color: white;
}

.social-link.phone {
    background-color: rgba(249, 115, 22, 0.2);
    color: var(--color-orange);
}

.social-link.phone:hover {
    background-color: var(--color-orange);
    color: white;
}

.social-link.facebook {
    background-color: rgba(24, 119, 242, 0.2);
    color: #1877F2;
    width: 48px;
    height: 48px;
}

.social-link.facebook i {
    font-size: 20px;
}

.social-link.facebook:hover {
    background-color: #1877F2;
    color: white;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-orange);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-contact i {
    color: var(--color-orange);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
}

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

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.developer-credit {
    font-size: 13px !important;
    opacity: 0.8;
    color: var(--color-orange) !important;
}

@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.back-to-top:hover {
    color: var(--color-orange);
}

.back-to-top i {
    width: 32px;
    height: 32px;
    background-color: var(--color-bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover i {
    background-color: var(--color-orange);
    color: white;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-green);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 3000;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 20px;
}

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Map Section */
.map-section {
    background-color: var(--color-bg-light);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1) brightness(0.9);
    transition: var(--transition);
}

.map-container iframe:hover {
    filter: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        display: none;
    }

    .hero-text {
        margin: 0 auto 32px;
    }

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

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

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

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        flex-direction: column;
        padding: 30px;
    }

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

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

    .info-cards {
        grid-template-columns: 1fr;
    }

    .quick-buttons {
        flex-direction: column;
    }

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

    .whatsapp-banner {
        padding: 40px 20px;
    }

    .whatsapp-banner h3 {
        font-size: 24px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-container {
        height: 350px;
    }

    .modal-content {
        margin: 10px;
        width: calc(100% - 20px);
    }

    .modal-image {
        height: 200px;
    }

    .modal-details {
        padding: 20px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
}

/* Workshop Preview Gallery */
.workshop-preview {
    background-color: var(--color-bg-light);
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.workshop-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.workshop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.workshop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.workshop-overlay span {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.workshop-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange);
}

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

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

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

    .workshop-item {
        height: 250px;
    }
}