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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #fff;
}

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

.hidden {
    display: none !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

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

.logo-container {
    margin-left: -1rem;
}

.logo {
    height: 48px;
    width: auto;
}

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

.nav-link {
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.menu-toggle {
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle:hover {
    color: #F7931E;
}

.mobile-menu {
    padding-bottom: 1rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    text-align: left;
    padding: 0.5rem 0;
}

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

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

    .menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    background: linear-gradient(to right, #f3f4f6, #f9fafb);
}

.hero-container {
    padding: 5rem 1rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #F7931E;
    margin-bottom: 1.5rem;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-bullet {
    width: 16px;
    height: 16px;
    background: #F7931E;
    border-radius: 50%;
    position: relative;
}

.product-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.product-item span {
    font-size: 1.125rem;
    color: #374151;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-top: 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: #F7931E;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #E67E0E;
    transform: scale(1.05);
}

.btn-secondary {
    background: #fff;
    color: #1f2937;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: #f9fafb;
    transform: scale(1.05);
}

/* Carousel */
.hero-carousel {
    position: relative;
}

.carousel-decoration {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: #F7931E;
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: rotate(3deg);
}

.carousel-wrapper {
    background: #fff;
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0.75rem;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 0.75rem;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
}

.carousel-caption h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.carousel-caption p {
    color: #e5e7eb;
    font-size: 0.875rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #1f2937;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-btn:hover {
    background: #fff;
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background: #fff;
}

.carousel-dot.active {
    background: #F7931E;
    width: 32px;
    border-radius: 6px;
}

/* Hero Footer */
.hero-footer {
    background: linear-gradient(to right, #F7931E, #E67E0E);
    padding: 1rem 0;
}

.hero-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: #fff;
}

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

.footer-item span {
    font-weight: 600;
}

.footer-divider {
    display: none;
    width: 1px;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
    .footer-divider {
        display: block;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
}

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

    .hero-title {
        font-size: 36px;
        text-transform: uppercase;

    }

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

    .hero-container {
        padding: 8rem 1rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: #F7931E;
    margin: 0 auto 3rem;
}

.about-description {
    text-align: center;
    color: #374151;
    max-width: 896px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.highlight {
    font-weight: 700;
    color: #F7931E;
}

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

.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.about-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #F7931E;
}

.about-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon svg {
    color: #F7931E;
    background: rgba(247, 147, 30, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-card p {
    text-align: center;
    color: #4b5563;
    line-height: 1.7;
}

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

/* Services Section */
.services-section {
    background: linear-gradient(to right, #F7931E, #E67E0E);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/1591373/pexels-photo-1591373.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.services-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.service-item {
    text-align: center;
    color: #fff;
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-item p {
    font-size: 1.875rem;
    font-weight: 700;
}

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

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.products-grid {
    display: grid;
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

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

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: #374151;
    margin-bottom: 0.5rem;
}

.product-details {
    font-size: 0.875rem;
    color: #6b7280;
}

.products-cta {
    margin-top: 4rem;
    text-align: center;
}

.products-cta p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #fff;
}

.gallery-description {
    text-align: center;
    color: #374151;
    max-width: 896px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(247, 147, 30, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay p {
    color: #fff;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

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

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

/* Clients Section */
.clients-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.clients-subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 3rem;
}

.clients-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.clients-btn {
    padding: 0.75rem;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.clients-btn:hover {
    background: #f3f4f6;
}

.clients-btn svg {
    color: #374151;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex: 1;
    max-width: 896px;
}

.client-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 160px;
    transition: all 0.3s;
}

.client-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.5);
}

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

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #fff;
}

.contact-intro {
    text-align: center;
    color: #374151;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 1152px;
    margin: 0 auto;
}

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

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

.contact-icon {
    background: rgba(247, 147, 30, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.contact-icon svg {
    color: #F7931E;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.whatsapp-title {
    color: #F7931E !important;
}

.whatsapp-number {
    color: #1f2937;
    font-weight: 600;
}

.contact-item p {
    color: #4b5563;
}

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

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

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

.form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F7931E;
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.btn-submit {
    width: 100%;
    background: #F7931E;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #E67E0E;
    transform: scale(1.05);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    color: #059669;
    font-weight: 700;
    font-size: 1.25rem;
}

.contact-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(to right, #F7931E, #E67E0E);
    padding: 3rem 1rem;
    border-radius: 1rem;
}

.contact-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.btn-cta {
    background: #fff;
    color: #F7931E;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

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

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.footer {
    background: #111827;
    color: #fff;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0.75rem;
    background: #1f2937;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip-title {
    font-weight: 600;
    display: block;
}

.tooltip-subtitle {
    font-size: 0.875rem;
    color: #d1d5db;
    display: block;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    border: 8px solid transparent;
    border-left-color: #1f2937;
}

.whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}