* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
}

.logo-text h1 span {
    color: #eab308;
}

.logo-text .tm {
    font-size: 0.7rem;
    vertical-align: super;
    color: #eab308;
}

.logo-text p {
    font-size: 0.7rem;
    color: #475569;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #eab308;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: #eab308;
    color: #1e293b;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ca8a04;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #eab308;
    background: transparent;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: #eab308;
    color: #1e293b;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9e3 0%, #ffffff 100%);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .tagline {
    font-size: 1.3rem;
    color: #eab308;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image i {
    font-size: 12rem;
    color: #eab308;
}

/* Sections */
.section {
    padding: 70px 0;
}

.section-dark {
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #eab308;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.service-card p {
    color: #475569;
    margin-bottom: 16px;
}

.card-link {
    color: #eab308;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Coverage */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.coverage-item {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.coverage-item i {
    font-size: 2rem;
    color: #eab308;
    margin-bottom: 10px;
}

/* Strengths */
.strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.strength {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.strength i {
    font-size: 2rem;
    color: #eab308;
    margin-bottom: 12px;
}

/* CTA Section */
.cta-section {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 24px;
    color: #94a3b8;
}

/* Product Page Specific */
.product-hero {
    background: #1e293b;
    color: white;
    padding: 60px 0;
}

.product-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.product-hero p {
    font-size: 1.1rem;
    color: #94a3b8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.feature {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
}

.feature i {
    font-size: 2rem;
    color: #eab308;
    margin-bottom: 12px;
}

.specs {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 16px;
    margin: 30px 0;
}

.specs h3 {
    margin-bottom: 16px;
}

.specs ul {
    list-style: none;
}

.specs li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    background: #1e293b;
    color: white;
    padding: 32px;
    border-radius: 24px;
}

.contact-info i {
    color: #eab308;
    margin-right: 12px;
}

.contact-info p {
    margin: 16px 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
}

.map-container {
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-grid h3, .footer-grid h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 8px;
}

.footer-grid ul li a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-grid ul li a:hover {
    color: #eab308;
}

.social-links {
    text-align: center;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    margin: 0 12px;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #eab308;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background: #128C7E;
    color: white;
}

.whatsapp-btn i {
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image i {
        font-size: 6rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 40px;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 14px;
        border-radius: 50px;
    }
}