:root {
    --primary-color: #FF6B00;
    --secondary-color: #FFA500;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #fff;
    --success-color: #28a745;
}


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



/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://sjc.microlink.io/YMbcu6nZqErjBvjtyEdHBRz_aNI4LTvkznpgE-uzAUZVUHgZnShiXX5wKwcmcpQO9EgoSXLDVG8oHTZJjelg0Q.jpeg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: auto;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: left;
}

/* Form Section */
.contact-form-section {
    padding: 4rem 0;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: -4rem;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.contact-form-section h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.whatsapp-form {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.required {
    color: var(--primary-color);
}

.products-section {
    margin-top: 2rem;
}

.products-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.checkbox-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

input[type="checkbox"].customization {
    width: 25px;
    height: 25px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    width: 15px;
    height: 15px;
}

.terms {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    margin-top: 2rem;
}

.submit-button:hover {
    background-color: #e55e00;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {

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

    .hero h1 {
        font-size: 2rem;
    }

    .contact-form-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .contact-form-section {
        padding: 2rem 0;
    }

    .submit-button {
        padding: 0.75rem 1.5rem;
    }
}


/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://sjc.microlink.io/YMbcu6nZqErjBvjtyEdHBRz_aNI4LTvkznpgE-uzAUZVUHgZnShiXX5wKwcmcpQO9EgoSXLDVG8oHTZJjelg0Q.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;

}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.usp-list {
    list-style-type: none;
    margin-bottom: 2rem;
}

.usp-list li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.usp-list li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #e55e00;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .usp-list {
        display: inline-block;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        margin-top: 2rem;
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .usp-list li {
        font-size: 1rem;
    }

    .cta-button {
        /* width: 100%; */
        max-width: 300px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
    }
}

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

    .hero p {
        font-size: 0.9rem;
    }

    .usp-list li {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Stats Section */
.stats {
    padding: 2rem 0;
    background-color: #f8f7ff;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 1rem;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

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

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: var(--white);
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
}

/* Why Choose Us Section */
.why-us {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faqs {
    padding: 4rem 0;
    background-color: white;
}

.faqs h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--white);
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 1rem;
    background-color: var(--light-gray);
    display: none;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Bottom Bar Container */
.call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #F26722 0%, #FBB040 100%);
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 99;
}

/* Call Button Styles */
.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #F26722;
    text-decoration: none;
    padding: 8px 24px;
    z-index: 12;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 140px;
}

.call-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.call-button svg {
    width: 20px;
    height: 20px;
}

/* Business Hours Text */
.business-hours {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .call-bar {
        padding: 12px 16px;
    }

    .call-button {
        width: 100%;
        max-width: 300px;
    }

    .business-hours {
        font-size: 12px;
    }
}

/* iOS Safe Area Support */
@supports (padding: max(0px)) {
    .call-bar {
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }
}


.bulk-order-section {
    --primary-color: #000000;
    --secondary-color: #FF6B00;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

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

.bulk-order-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.bulk-order-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.bulk-order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.bulk-order-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 4px solid var(--primary-color);
}

.bulk-order-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bulk-order-step-number {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bulk-order-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.bulk-order-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.bulk-order-cta {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: #F26722;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid #000000;
}

.bulk-order-cta:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Animation for cards */
@keyframes bulkOrderFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.bulk-order-card {
    animation: bulkOrderFadeInUp 0.6s ease-out forwards;
}

.bulk-order-card:nth-child(2) {
    animation-delay: 0.2s;
}

.bulk-order-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .bulk-order-title {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .bulk-order-container {
        padding: 2rem 1rem;
    }

    .bulk-order-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bulk-order-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .bulk-order-image {
        height: 200px;
    }

    .bulk-order-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .bulk-order-step-title {
        font-size: 1.25rem;
    }

    .bulk-order-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bulk-order-container {
        padding: 1.5rem 1rem;
    }

    .bulk-order-title {
        font-size: 1.5rem;
    }

    .bulk-order-image {
        height: 180px;
    }
}

.offer-section {
    --primary-color: #5D4E9C;
    --secondary-color: #FF6B00;
    --accent-color: #8A7CC8;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #fff;
    --shadow: 0 4px 20px rgba(93, 78, 156, 0.1);
    --hover-shadow: 0 8px 30px rgba(93, 78, 156, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: 'Inter', sans-serif;
    padding: 5rem 0;
    background: white;
}

.offer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offer-title {
    text-align: center;
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    font-weight: 700;
    position: relative;
}

.offer-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
}

.offer-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(93, 78, 156, 0.1);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-image-wrapper {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
    background-color: #f8f7ff;
}

.offer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.offer-title-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
}

.offer-description {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Animation */
@keyframes offerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.offer-card {
    animation: offerFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.offer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-card:nth-child(3) {
    animation-delay: 0.4s;
}

.offer-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-section {
        padding: 3rem 0;
    }

    .offer-container {
        padding: 0 1.5rem;
    }

    .offer-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

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

    .offer-content {
        padding: 1.25rem;
    }
}

.stats {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
}

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

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Mobile responsiveness */
@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

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

    .stat-label {
        font-size: 0.9rem;
    }
}



.quantity-wrapper {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quantity-wrapper:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.quantity-button {
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-button:hover {
    background: #e2e8f0;
    color: #334155;
}

.quantity-button:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 50px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-family: system-ui, -apple-system, sans-serif;
    color: #334155;
    padding: 0 8px;
    margin: 0 4px;
    background: transparent;
}

.quantity-input:focus {
    outline: none;
}

/* Remove spinner buttons from number input */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

.product-img {
    border: none;
    width: 60px;
    height: none;
}