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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f97316;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding-top: 64px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    width: fit-content;
    font-size: 0.875rem;
    color: #fb923c;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.title-white {
    color: #fff;
}

.title-gradient {
    background: linear-gradient(90deg, #fb923c, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: #9ca3af;
    font-size: 1.125rem;
    max-width: 500px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-whatsapp:hover {
    background: #22c55e;
    color: #fff;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    color: #f97316;
    font-size: 1.25rem;
}

.rating {
    color: #9ca3af;
    margin-left: 0.5rem;
}

.divider {
    width: 1px;
    height: 24px;
    background: #4b5563;
}

.customers {
    color: #9ca3af;
}

.hero-image {
    position: relative;
    display: none;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
    border-radius: 24px;
    filter: blur(40px);
}

.image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #333;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.image-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #f97316;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: rgba(45, 45, 45, 0.5);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
    transform: translateY(-5px);
}

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

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

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

.product-content {
    padding: 1.25rem;
}

.product-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-content p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-green {
    background: #16a34a;
    color: #fff;
}

.btn-green:hover {
    background: #15803d;
}

.btn-outline {
    background: transparent;
    color: #f97316;
    border: 1px solid #f97316;
}

.btn-outline:hover {
    background: #f97316;
    color: #fff;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.review-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.review-stars .star {
    font-size: 1rem;
}

.review-stars .star.half {
    opacity: 0.5;
}

.review-rating {
    color: #fb923c;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.review-text {
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.review-name {
    font-weight: 600;
}

.review-date {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Review Form */
.review-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.review-form-card {
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 2rem;
}

.review-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.review-form-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form-card input,
.review-form-card textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(55, 55, 55, 0.5);
    border: 1px solid #444;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.review-form-card input::placeholder,
.review-form-card textarea::placeholder {
    color: #9ca3af;
}

.review-form-card input:focus,
.review-form-card textarea:focus {
    outline: none;
    border-color: #f97316;
}

.review-form-card textarea {
    resize: none;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: rgba(45, 45, 45, 0.5);
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

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

.stat-card {
    background: #2d2d2d;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
}

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

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

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

.contact-card {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.orange {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.contact-icon.green {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: #f97316;
}

.contact-arrow {
    width: 40px;
    height: 40px;
    background: #16a34a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease;
}

.contact-arrow:hover {
    background: #15803d;
}

.working-hours .contact-info {
    width: 100%;
}

.hours-list {
    margin-top: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.hours-row span:first-child {
    color: #9ca3af;
}

.hours-row span:last-child {
    color: #fff;
    font-weight: 500;
}

.hours-row .closed {
    color: #ef4444;
}

/* Map */
.map-wrapper {
    position: relative;
}

.map-glow {
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
    border-radius: 24px;
    filter: blur(30px);
}

.map-container {
    position: relative;
    background: #2d2d2d;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    border-radius: 16px;
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
}

.map-overlay svg {
    color: #f97316;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #22c55e;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Responsive Styles */
@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

@media (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-description {
        max-width: 100%;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #2d2d2d;
        border-top: 1px solid #333;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .about-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .divider {
        display: none;
    }

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

    .toast {
        left: 1rem;
        right: 1rem;
        transform: translateX(0) translateY(-20px);
    }

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