/* ===== BASE STYLES ===== */
:root {
    --primary-color: #111111;
    --secondary-color: #333333;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #f5f5f5;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

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

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

section {
    padding: 80px 0;
}

/* ===== HEADER STYLES ===== */
.header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-link {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.nav-desktop {
    display: flex;
    align-items: center;
}

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

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.webp') no-repeat center center/cover;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-btn {
    font-size: 18px;
    padding: 15px 30px;
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.webp') no-repeat center center/cover;
    /* "cover" ensures the image fills the container while maintaining aspect ratio */
}
/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--bg-light);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--bg-dark);
}

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

.service-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--bg-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    color: var(--accent-color);
    min-width: 30px;
    text-align: center;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* ===== PROGRAM SECTION ===== */
.program {
    background-color: var(--bg-dark);
}

.program-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.program-icon {
    font-size: 24px;
    color: var(--accent-color);
    min-width: 30px;
    text-align: center;
}

.program-item p {
    font-size: 18px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    background-color: var(--accent-color);
    color: var(--text-light);
    text-align: center;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
}
@media (min-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        width: 100%;
    }
}

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

.newsletter-btn:hover {
    background-color: #000000;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: var(--transition);
}

.footer-logo img:hover {
    opacity: 0.9;
}

.footer-links h3,
.footer-legal h3,
.footer-social h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-legal p {
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    font-size: 14px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    
    .footer-logo {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .contact-item,
    .program-item {
        flex-direction: column;
        text-align: center;
    }
}
/* Add to existing CSS */
/* Newsletter Checkbox Styles */
* Add to existing CSS */
.checkbox-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 14px;
}

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

.checkbox-container a {
    color: var(--text-light);
    text-decoration: underline;
}

.checkbox-container a:hover {
    color: #ffffff;
}

/* For policy pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-content h2 {
    text-align: left;
    margin: 30px 0 15px;
}

.policy-content p, 
.policy-content ul {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-content ul {
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}
/* ===== CATALOG STYLES ===== */
.catalog {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-image {
    height: 300px;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-card h3 {
    padding: 20px;
    text-align: center;
    margin: 0;
}

/* ===== PRODUCTS STYLES ===== */
.products {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-image {
    height: 300px;
    overflow: hidden;
}

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

.product-code {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    background-color: var(--bg-dark);
}

/* ===== MOBILE NAVIGATION ===== */
.nav-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .nav-mobile .nav-links {
        display: flex;
        list-style: none;
    }
    
    .nav-mobile .nav-links li {
        margin-left: 20px;
    }
    
    .nav-mobile .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: var(--transition);
    }
    
    .nav-mobile .nav-links a:hover {
        color: var(--accent-color);
    }
}
/* Add to your styles.css */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0 0 10px 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

.product-card {
    display: flex;
    flex-direction: column;
}
