/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #000000 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.header-badge {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(37,211,102,0.3);
    animation: pulse 2s infinite;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.logo::after {
    content: "🚰";
    position: absolute;
    top: -5px;
    right: -30px;
    font-size: 1.5rem;
    animation: drip 2s infinite;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 120px 1rem 4rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.whatsapp-float::before {
    content: "💬";
    font-size: 1.2rem;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* SEO Content Section */
.seo-content {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ff0000;
}

.seo-section h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
}

.seo-section h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
}

.seo-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.seo-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.seo-cta:hover {
    transform: translateY(-2px);
}

/* Sitemap Styles */
.sitemap-hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 80px 1rem 2rem;
    text-align: center;
}

.sitemap-hero h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.sitemap-hero p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-content {
    padding: 2rem 1rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sitemap-category {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ff0000;
}

.sitemap-category h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
}

.sitemap-category h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
}

.sitemap-category ul {
    list-style: none;
    padding: 0;
}

.sitemap-category li {
    margin-bottom: 0.8rem;
}

.sitemap-category a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.sitemap-category a:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    transform: translateX(5px);
}

.main-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.main-pages li {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 10px;
    margin-bottom: 1rem !important;
}

.main-pages a {
    color: white !important;
    font-weight: bold;
}

.main-pages a:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%) !important;
    color: white !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #ff0000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p, .footer-section ul {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
    grid-column: 1 / -1;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
}

/* Animations */
@keyframes drip {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(2px) rotate(5deg); }
    50% { transform: translateY(-1px) rotate(-3deg); }
    75% { transform: translateY(1px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile First Approach - Will be enhanced in responsive.css */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}
