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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    white-space: nowrap;
}


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

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.navigation {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .navigation {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .nav-link {
        padding: 12px 20px;
        background-color: #f8f9fa;
        border-radius: 25px;
        font-size: 0.9rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .nav-link:hover {
        background-color: #007bff;
        color: white;
        transform: translateY(-2px);
        border-color: #007bff;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }
    
    .phone-number {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .cta-button, .whatsapp-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 12px 20px;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta-button, .hero-whatsapp-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

.nav-link:hover {
    color: #007bff;
}

.cta-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #007bff;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-cta-button:hover {
    background-color: #0056b3;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-whatsapp-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-whatsapp-button:hover {
    background-color: #128C7E;
}

.hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px 30px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50px;
    border: 2px solid #007bff;
    backdrop-filter: blur(10px);
}

.hero-phone i {
    font-size: 1.5rem;
    color: #007bff;
}

.hero-phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: white;
}

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

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

.product-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    margin-bottom: 30px;
}

.camera-icon {
    font-size: 4rem;
    color: #007bff;
}

.camera-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.learn-more-button {
    background-color: white;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-button:hover {
    background-color: #007bff;
    color: white;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.service-card {
    text-align: center;
    padding: 40px 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.phone-contact-container {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.main-phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 15px;
    color: white;
}

.phone-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.phone-info {
    text-align: left;
}

.phone-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.phone-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-number-large:hover {
    transform: scale(1.05);
}

.integrity-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

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

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.contact-method h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.contact-method p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.whatsapp-contact {
    margin-top: 30px;
    text-align: center;
}

.whatsapp-contact-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.whatsapp-contact-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: white;
}

.brands-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    width: 100%;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-copyright {
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-phone {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .hero-phone-number {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-phone-display {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .phone-info {
        text-align: center;
    }
    
    .phone-number-large {
        font-size: 2rem;
        white-space: nowrap;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .brand-item {
        min-height: 100px;
        padding: 15px;
    }
    
    .brand-logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .phone-number-large {
        font-size: 1.5rem;
        white-space: nowrap;
    }
    
    .navigation {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .cta-button, .whatsapp-button {
        justify-content: center;
    }
    
    .hero-cta-button, .hero-whatsapp-button {
        justify-content: center;
    }
    
    .whatsapp-contact-button {
        justify-content: center;
    }
}
