/* Sitemap Page Styles */
.sitemap-container { max-width: 900px; margin: 0 auto; padding: 2rem 1rem; background: #fff; border-radius: 1.5rem; box-shadow: 0 4px 24px rgba(60,60,120,0.08); }
.sitemap-title { font-size: 2.2rem; font-weight: 700; color: #1e293b; margin-bottom: 1.2rem; }
.sitemap-section { margin-bottom: 2rem; }
.sitemap-section h2 { font-size: 1.3rem; color: #6366f1; margin-bottom: 0.7rem; font-weight: 600; }
.sitemap-list { list-style: none; padding-left: 0; }
.sitemap-list li { margin-bottom: 0.5rem; }
.sitemap-list a { color: #0ea5e9; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.sitemap-list a:hover { color: #6366f1; text-decoration: underline; }
@media (max-width: 600px) {
    .sitemap-container { padding: 1rem 0.3rem; border-radius: 1rem; }
    .sitemap-title { font-size: 1.4rem; }
    .sitemap-section h2 { font-size: 1.05rem; }
}
/* Service Hero Attract Section - Animation & Style Refinements */
.service-hero-attract .service-chip {
    box-shadow: 0 2px 8px rgba(60,60,120,0.08);
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
}
.service-hero-attract .service-chip:hover {
    background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(60,60,120,0.18);
    transform: scale(1.08) translateY(-2px);
    border-color: #6366f1;
}
.service-hero-attract .btn-gradient-primary {
    animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 4px 16px rgba(60,60,120,0.10); }
    50% { box-shadow: 0 8px 32px rgba(60,60,120,0.18); }
    100% { box-shadow: 0 4px 16px rgba(60,60,120,0.10); }
}
.service-hero-attract h1 {
    animation: fadeInUp 1.2s cubic-bezier(.42,0,.58,1) both;
}
.service-hero-attract .badge {
    animation: fadeInDown 1.2s cubic-bezier(.42,0,.58,1) both;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.service-hero-attract .btn-gradient-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 32px rgba(60,60,120,0.22);
}
.service-hero-attract .hero-illustration {
    animation: floatHero 4s ease-in-out infinite;
}
@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
/* services.custom.css - AZWIS style enhancements */

.product-card {
    box-shadow: 0 4px 24px rgba(26,53,94,0.08);
    border-radius: 1.25rem;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover {
    box-shadow: 0 8px 32px rgba(26,53,94,0.16);
    transform: translateY(-6px) scale(1.02);
}
.product-image img {
    border-radius: 1.25rem 1.25rem 0 0;
    object-fit: cover;
    height: 180px;
    width: 100%;
}
.product-overlay .badge {
    background: #1a355e;
    color: #fff;
    font-size: 0.95rem;
    padding: 0.5em 1.2em;
    border-radius: 2em;
    box-shadow: 0 2px 8px rgba(26,53,94,0.10);
}
.product-info h3 {
    font-size: 1.35rem;
    color: #1a355e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.product-features span {
    display: inline-block;
    margin-right: 1em;
    color: #2e5c9a;
    font-size: 0.98rem;
}
.product-actions .btn {
    background: linear-gradient(90deg, #1a355e 0%, #2e5c9a 100%);
    color: #fff;
    border: none;
    border-radius: 2em;
    font-weight: 500;
    padding: 0.6em 2em;
    box-shadow: 0 2px 8px rgba(26,53,94,0.10);
    transition: background 0.3s;
}
.product-actions .btn:hover {
    background: linear-gradient(90deg, #2e5c9a 0%, #1a355e 100%);
}
.key-features .feature-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px rgba(26,53,94,0.07);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.key-features .feature-card:hover {
    box-shadow: 0 6px 24px rgba(26,53,94,0.13);
    transform: translateY(-4px) scale(1.01);
}
.key-features .icon-wrapper {
    font-size: 2.2rem;
    color: #2e5c9a;
    margin-bottom: 0.7rem;
}
@media (max-width: 767px) {
    .services-hero h4 {
        font-size: 2rem;
    }
    .product-card {
        min-height: 340px;
    }
    .key-features .feature-card {
        padding: 1.2rem 0.7rem;
    }
}
