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

/* Image Optimization and Lazy Loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* WebP Support */
.webp .product-image img,
.webp .service-card img,
.webp .hero-image {
    background-image: url('data:image/webp;base64,UklGRnoGAABXRUJQVlA4WAoAAAAQAAAAEwAAEwAAQUxQSFAAAAABXUDggNAAAAPABAJ0BKjAAMAA+JQyJQqKhIJB4CgA+JaQABgAD+/v4AAAAA');
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.3;
}

.faq-content {
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #45a049 0%, #2E7D32 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.5;
}

.faq-answer strong {
    color: #4CAF50;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.faq-cta h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faq-cta p {
    color: #666;
    margin-bottom: 25px;
}

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

.faq-buttons .btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.faq-buttons .btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
}

.faq-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #45a049 0%, #2E7D32 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.faq-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
}

.faq-buttons .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 20px 25px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #4CAF50;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    color: #4CAF50;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4CAF50;
}

.phone-number a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 1.1rem;
}

.phone-number a:hover {
    color: #45a049;
}

.emergency-service {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FF5722;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-badges {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

.gov-card-notice, .certification-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.gov-card-notice i, .certification-badge i {
    color: #4CAF50;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    position: relative;
    border-bottom: 3px solid #2E7D32;
}

.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #81C784, #4CAF50, #2E7D32, #4CAF50, #81C784);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mobile-menu-toggle .hamburger-line {
    width: 28px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu > li {
    position: relative;
    margin: 0;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-bottom-color: #81C784;
    transform: translateY(-2px);
}

.nav-menu > li > a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.2);
    border-bottom-color: #fff;
    font-weight: 600;
}

.nav-menu > li > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(76, 175, 80, 0.1);
    padding: 8px 0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #4CAF50, #45a049);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.04));
    color: #4CAF50;
    border-left-color: #4CAF50;
    padding-left: 25px;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu li a i {
    color: #4CAF50;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Enhanced dropdown categories */
.dropdown-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    max-width: 600px;
    width: max-content;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

/* Special styling for main menu items */
.nav-menu > li > a {
    position: relative;
    overflow: hidden;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu > li > a:hover::after {
    width: 80%;
}

/* Professional badge styling for menu items */
.nav-menu > li > a .menu-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ensure Blog link is always visible and prominent */
.nav-menu > li > a[href*="blog"] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    margin: 0 3px;
}

.nav-menu > li > a[href*="blog"]:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced mobile menu */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
        flex-direction: column;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        padding: 18px 20px;
        justify-content: space-between;
        border-bottom: none;
    }
    
    .nav-menu > li > a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: none;
    }
    
    /* Ensure Blog link is visible on mobile */
    .nav-menu > li > a[href*="blog"] {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 600;
        color: #fff !important;
        margin: 5px 15px;
        border-radius: 6px;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        max-width: none;
        width: 100%;
        border: none;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li a {
        padding: 12px 30px;
        color: rgba(255, 255, 255, 0.9);
        border-left: none;
        font-size: 14px;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        padding-left: 35px;
    }
    
    .dropdown-menu li a::before {
        display: none;
    }
    
    .dropdown-menu li a i {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* Hero Section - Modern Redesign */
.hero {
    background: linear-gradient(135deg, #1a5f7a 0%, #2c8a6b 50%, #4CAF50 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    animation: float 15s ease-in-out infinite reverse;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 12px 24px;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 600;
    animation: slideInDown 1s ease-out;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-badge i {
    color: #FFD700;
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out 0.2s both;
    color: white;
    letter-spacing: -0.02em;
}

.hero-content h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #E8F5E8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: slideInUp 1s ease-out 0.4s both;
    opacity: 0.95;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #E8F5E8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    animation: slideInUp 1s ease-out 0.6s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    animation: slideInUp 1s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: slideInUp 1s ease-out 1s both;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 220px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 5;
    color: white;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: 2px solid #FF6B35;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F7931E, #E67E22);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

.btn-subtitle {
    font-size: 0.85rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-weight: 400;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    animation: slideInUp 1s ease-out 1.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    color: white;
}

.stat-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #4CAF50;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #E8F5E8;
    opacity: 0.9;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    animation: slideInUp 1s ease-out 1.4s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.trust-badge:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.trust-badge i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-card.sale .sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5722;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

.add-to-cart, .select-options {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-to-cart:hover, .select-options:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 60px;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    flex-shrink: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 1.1rem;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: #45a049;
}

.service-areas {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-areas h4 {
    color: #4CAF50;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4CAF50;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    background: #4CAF50;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin: 0;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-button {
    background: #25D366;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.scroll-top-button {
    background: #4CAF50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-button:hover {
    background: #45a049;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

/* Mobile responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .header-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #4CAF50;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        padding-left: 20px;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        color: white;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        color: #E8F5E8;
    }
    
    .hero-content p {
        font-size: 1.05rem;
        color: #E8F5E8;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        color: white;
        padding: 16px 32px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        color: white;
        padding: 15px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 8px 16px;
        color: white;
    }
    
    .hero-trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        color: white;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .services-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .service-card {
        margin-bottom: 0;
        min-width: 250px;
    }
    
    .pest-services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
        color: white;
    }

    .hero-content h2 {
        font-size: 1.3rem;
        color: #E8F5E8;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        color: #E8F5E8;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-buttons {
        gap: 15px;
    }

    .hero-features {
        gap: 10px;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-trust-badges {
        gap: 10px;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        gap: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
} 

/* Professional Services Section */
.professional-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4CAF50;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.service-link {
    display: inline-block;
    padding: 12px 25px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Specific Pest Services */
.specific-services {
    padding: 100px 0;
    background: white;
}

.pest-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pest-service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.pest-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.pest-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pest-service-content {
    padding: 25px;
}

.pest-service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.pest-service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pest-service-link {
    display: inline-block;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pest-service-link:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #2E7D32 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-information {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-card a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #45a049;
}

.contact-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Enhanced Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.form-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 40px;
    text-align: center;
}

.form-header .section-header h2 {
    color: white;
    margin-bottom: 10px;
}

.form-header .section-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.benefit-item i {
    color: #81C784;
}

.contact-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #4CAF50;
    font-size: 16px;
    z-index: 2;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checkbox-label:hover {
    background: rgba(76, 175, 80, 0.05);
    border-color: rgba(76, 175, 80, 0.2);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label i {
    color: #4CAF50;
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 200px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.form-actions .btn-secondary {
    background: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.form-actions .btn-secondary:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Service Areas Enhancement */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.area-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.area-card h3 {
    color: #4CAF50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-card h3::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    transition: color 0.3s ease;
}

.area-card li:last-child {
    border-bottom: none;
}

.area-card li:hover {
    color: #4CAF50;
    padding-left: 10px;
}

/* Why Choose Us Enhancement */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-item h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        min-width: 100%;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card,
    .area-card,
    .feature-item {
        padding: 20px;
    }
}

/* Online Shop Page Specific Styles */
.shop-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #2E7D32 100%);
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Shop Categories Enhancement */
.shop-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.category-icon i {
    font-size: 32px;
    color: white;
}

.category-card h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-feature {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.category-card .btn-outline {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-card .btn-outline:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF5722, #F44336);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.category-badge:empty {
    display: none;
}

/* Enhanced Product Cards */
.featured-products {
    padding: 80px 0;
    background: white;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.product-rating i {
    color: #FFD700;
    font-size: 14px;
}

.rating-count {
    color: #666;
    font-size: 12px;
    margin-left: 5px;
}

.product-price {
    color: #4CAF50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-features .feature {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

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

.product-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.product-actions .btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.product-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.product-actions .btn-outline {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 8px;
    min-width: 40px;
}

.product-actions .btn-outline:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Shopping Features Enhancement */
.shopping-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.shopping-features .feature-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.shopping-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.shopping-features .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.shopping-features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.shopping-features .feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.shopping-features .feature-icon i {
    font-size: 32px;
    color: white;
}

.shopping-features .feature-item h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.shopping-features .feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact CTA Enhancement */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-buttons .btn-primary {
    background: white;
    color: #4CAF50;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #4CAF50;
    transform: translateY(-2px);
}

/* Responsive Design for Online Shop */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shopping-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
    }
    
    .category-card,
    .product-card,
    .shopping-features .feature-item {
        padding: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
}

/* Renovation Cleaning Page Specific Styles */
.renovation-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #2E7D32 100%);
    position: relative;
    overflow: hidden;
}

.renovation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Service Overview Enhancement */
.service-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.overview-text h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.overview-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.overview-text ul {
    list-style: none;
    padding: 0;
}

.overview-text li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.overview-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Enhanced Service Categories */
.service-categories {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.service-feature {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.service-actions {
    margin-top: 20px;
}

.service-actions .btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.service-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

/* Enhanced Service Process */
.service-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.step {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.step-content h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.step-feature {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Enhanced Service Benefits */
.service-benefits {
    padding: 80px 0;
    background: white;
}

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

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-item h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-features {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.benefit-feature {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Responsive Design for Renovation Cleaning */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card,
    .step,
    .benefit-item {
        padding: 20px;
    }
    
    .service-features,
    .step-features,
    .benefit-features {
        justify-content: center;
    }
}

/* Nano Disinfection Page Specific Styles */
.nano-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #2E7D32 100%);
    position: relative;
    overflow: hidden;
}

.nano-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Technology Overview Enhancement */
.technology-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.tech-text h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-text ul {
    list-style: none;
    padding: 0;
}

.tech-text li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tech-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.tech-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Enhanced Service Features */
.service-features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-details {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-detail {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Enhanced Applications */
.applications {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.application-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.application-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.application-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.application-card:hover .application-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.application-icon i {
    font-size: 32px;
    color: white;
}

.application-card h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.application-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.application-features {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.application-feature {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.application-actions {
    margin-top: 20px;
}

.application-actions .btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.application-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

/* Responsive Design for Nano Disinfection */
@media (max-width: 768px) {
    .tech-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .application-card {
        padding: 20px;
    }
    
    .feature-details,
    .application-features {
        justify-content: center;
    }
}

/* Honey Products Page Styles */
.honey-hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.honey-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="honeycomb" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,1 4,1 1,6 1,14 4,19 10,19 13,14 13,6" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23honeycomb)"/></svg>');
    opacity: 0.3;
    animation: honeycombFloat 20s linear infinite;
}

@keyframes honeycombFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

.honey-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.honey-hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: honeyParticleFloat 8s linear infinite;
}

.honey-hero .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.honey-hero .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.honey-hero .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.honey-hero .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.honey-hero .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.honey-hero .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.honey-hero .particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.honey-hero .particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.honey-hero .particle:nth-child(9) { left: 90%; animation-delay: 2s; }
.honey-hero .particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes honeyParticleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.honey-hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.honey-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.honey-hero .title-line {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.honey-hero .title-line.highlight {
    color: #8B4513;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.honey-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.honey-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.honey-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.honey-hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.honey-hero .feature-item i {
    color: #8B4513;
    font-size: 1.1rem;
}

.honey-hero .feature-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.honey-hero .hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.honey-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.honey-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.honey-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.honey-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.honey-hero .stat-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.honey-hero .hero-badges {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.honey-hero .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.honey-hero .badge:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.honey-hero .badge i {
    color: #8B4513;
    font-size: 1.1rem;
}

.honey-hero .badge span {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Honey Products Page Responsive */
@media (max-width: 768px) {
    .honey-hero {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .honey-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .honey-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .honey-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .honey-hero .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .honey-hero .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .honey-hero .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .honey-hero .stat-item {
        padding: 20px 15px;
    }
    
    .honey-hero .stat-number {
        font-size: 2rem;
    }
    
    .honey-hero .hero-badges {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .honey-hero .hero-title {
        font-size: 2rem;
    }
    
    .honey-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .honey-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .honey-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .honey-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .honey-hero .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Cleaning Products Page Styles */
.cleaning-hero {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 50%, #0D47A1 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.cleaning-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cleaning" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><rect x="0" y="0" width="30" height="30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cleaning)"/></svg>');
    opacity: 0.3;
    animation: cleaningFloat 20s linear infinite;
}

@keyframes cleaningFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

.cleaning-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cleaning-hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: cleaningParticleFloat 8s linear infinite;
}

.cleaning-hero .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.cleaning-hero .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.cleaning-hero .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.cleaning-hero .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.cleaning-hero .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.cleaning-hero .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.cleaning-hero .particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.cleaning-hero .particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.cleaning-hero .particle:nth-child(9) { left: 90%; animation-delay: 2s; }
.cleaning-hero .particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes cleaningParticleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.cleaning-hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cleaning-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cleaning-hero .title-line {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.cleaning-hero .title-line.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

.cleaning-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.cleaning-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.cleaning-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cleaning-hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cleaning-hero .feature-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

.cleaning-hero .feature-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.cleaning-hero .hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.cleaning-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.cleaning-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cleaning-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.cleaning-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cleaning-hero .stat-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cleaning-hero .hero-badges {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.cleaning-hero .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cleaning-hero .badge:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cleaning-hero .badge i {
    color: #2196F3;
    font-size: 1.1rem;
}

.cleaning-hero .badge span {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Cleaning Products Page Responsive */
@media (max-width: 768px) {
    .cleaning-hero {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .cleaning-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cleaning-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .cleaning-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cleaning-hero .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cleaning-hero .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cleaning-hero .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .cleaning-hero .stat-item {
        padding: 20px 15px;
    }
    
    .cleaning-hero .stat-number {
        font-size: 2rem;
    }
    
    .cleaning-hero .hero-badges {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .cleaning-hero .hero-title {
        font-size: 2rem;
    }
    
    .cleaning-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .cleaning-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cleaning-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cleaning-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cleaning-hero .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Pest Control Services Page Styles */
.pest-services-hero {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 50%, #33691E 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.pest-services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pest" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/><path d="M0 12.5 L25 12.5 M12.5 0 L12.5 25" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23pest)"/></svg>');
    opacity: 0.3;
    animation: pestFloat 20s linear infinite;
}

@keyframes pestFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

.pest-services-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.pest-services-hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pestParticleFloat 8s linear infinite;
}

.pest-services-hero .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.pest-services-hero .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.pest-services-hero .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.pest-services-hero .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.pest-services-hero .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.pest-services-hero .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.pest-services-hero .particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.pest-services-hero .particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.pest-services-hero .particle:nth-child(9) { left: 90%; animation-delay: 2s; }
.pest-services-hero .particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes pestParticleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.pest-services-hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pest-services-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pest-services-hero .title-line {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.pest-services-hero .title-line.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

.pest-services-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.pest-services-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.pest-services-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.pest-services-hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.pest-services-hero .feature-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

.pest-services-hero .feature-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pest-services-hero .hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.pest-services-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.pest-services-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pest-services-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.pest-services-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.pest-services-hero .stat-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.pest-services-hero .hero-badges {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.pest-services-hero .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pest-services-hero .badge:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pest-services-hero .badge i {
    color: #8BC34A;
    font-size: 1.1rem;
}

.pest-services-hero .badge span {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Pest Control Services Page Responsive */
@media (max-width: 768px) {
    .pest-services-hero {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .pest-services-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pest-services-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .pest-services-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pest-services-hero .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pest-services-hero .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pest-services-hero .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .pest-services-hero .stat-item {
        padding: 20px 15px;
    }
    
    .pest-services-hero .stat-number {
        font-size: 2rem;
    }
    
    .pest-services-hero .hero-badges {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .pest-services-hero .hero-title {
        font-size: 2rem;
    }
    
    .pest-services-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .pest-services-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .pest-services-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pest-services-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pest-services-hero .hero-badges {
        flex-direction: column;
        align-items: center;
    }
} 

/* Pest Control Products Hero Section */
.pest-products-hero {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 50%, #66BB6A 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.pest-products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pest-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pest-pattern)"/></svg>');
    opacity: 0.3;
    animation: pestPatternFloat 20s ease-in-out infinite;
}

@keyframes pestPatternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.pest-products-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.pest-products-hero .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pestParticleFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.pest-products-hero .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.pest-products-hero .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.pest-products-hero .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.pest-products-hero .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.pest-products-hero .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.pest-products-hero .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.pest-products-hero .particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.pest-products-hero .particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.pest-products-hero .particle:nth-child(9) { left: 90%; animation-delay: 2s; }
.pest-products-hero .particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes pestParticleFloat {
    0%, 100% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

.pest-products-hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.pest-products-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out;
}

.pest-products-hero .title-line {
    display: block;
    color: white;
}

.pest-products-hero .title-line.highlight {
    background: linear-gradient(45deg, #81C784, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #81C784;
}

.pest-products-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.2s both;
}

.pest-products-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.pest-products-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pest-products-hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.pest-products-hero .feature-item i {
    color: #81C784;
    font-size: 1.1rem;
}

.pest-products-hero .feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.pest-products-hero .hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.pest-products-hero .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInDown 1s ease-out 0.8s both;
}

.pest-products-hero .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pest-products-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.pest-products-hero .stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pest-products-hero .stat-item:hover::after {
    left: 100%;
}

.pest-products-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #81C784;
    margin-bottom: 5px;
    display: block;
}

.pest-products-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.pest-products-hero .hero-badges {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease-out 1s both;
}

.pest-products-hero .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.pest-products-hero .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pest-products-hero .badge i {
    color: #81C784;
    font-size: 1.1rem;
}

.pest-products-hero .badge span {
    color: white;
}

@media (max-width: 768px) {
    .pest-products-hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .pest-products-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pest-products-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .pest-products-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pest-products-hero .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pest-products-hero .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pest-products-hero .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .pest-products-hero .stat-item {
        min-width: 120px;
    }
    
    .pest-products-hero .stat-number {
        font-size: 2rem;
    }
    
    .pest-products-hero .hero-badges {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .pest-products-hero .hero-title {
        font-size: 2rem;
    }
    
    .pest-products-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .pest-products-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .pest-products-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pest-products-hero .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .pest-products-hero .hero-badges {
        flex-direction: column;
        align-items: center;
    }
} 

/* Disinfection Products Hero Section */
.disinfection-hero {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #42A5F5 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.disinfection-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="disinfection-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23disinfection-pattern)"/></svg>');
    opacity: 0.3;
    animation: disinfectionPatternFloat 20s ease-in-out infinite;
}

@keyframes disinfectionPatternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.disinfection-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.disinfection-hero .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: disinfectionParticleFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.disinfection-hero .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.disinfection-hero .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.disinfection-hero .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.disinfection-hero .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.disinfection-hero .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.disinfection-hero .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.disinfection-hero .particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.disinfection-hero .particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.disinfection-hero .particle:nth-child(9) { left: 90%; animation-delay: 2s; }
.disinfection-hero .particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes disinfectionParticleFloat {
    0%, 100% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

.disinfection-hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.disinfection-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out;
}

.disinfection-hero .title-line {
    display: block;
    color: white;
}

.disinfection-hero .title-line.highlight {
    background: linear-gradient(45deg, #64B5F6, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #64B5F6;
}

.disinfection-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.2s both;
}

.disinfection-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.disinfection-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.disinfection-hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.disinfection-hero .feature-item i {
    color: #64B5F6;
    font-size: 1.1rem;
}

.disinfection-hero .feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.disinfection-hero .hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.disinfection-hero .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInDown 1s ease-out 0.8s both;
}

.disinfection-hero .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.disinfection-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.disinfection-hero .stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.disinfection-hero .stat-item:hover::after {
    left: 100%;
}

.disinfection-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #64B5F6;
    margin-bottom: 5px;
    display: block;
}

.disinfection-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.disinfection-hero .hero-badges {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease-out 1s both;
}

.disinfection-hero .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.disinfection-hero .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.disinfection-hero .badge i {
    color: #64B5F6;
    font-size: 1.1rem;
}

.disinfection-hero .badge span {
    color: white;
}

@media (max-width: 768px) {
    .disinfection-hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .disinfection-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .disinfection-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .disinfection-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .disinfection-hero .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .disinfection-hero .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .disinfection-hero .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .disinfection-hero .stat-item {
        min-width: 120px;
    }
    
    .disinfection-hero .stat-number {
        font-size: 2rem;
    }
    
    .disinfection-hero .hero-badges {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .disinfection-hero .hero-title {
        font-size: 2rem;
    }
    
    .disinfection-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .disinfection-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .disinfection-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .disinfection-hero .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .disinfection-hero .hero-badges {
        flex-direction: column;
        align-items: center;
    }
} 

/* About Page Hero Section */
.about-hero {
    background: linear-gradient(135deg, #6A1B9A 0%, #8E24AA 50%, #AB47BC 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.3;
    animation: aboutPatternFloat 20s ease-in-out infinite;
}

@keyframes aboutPatternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.about-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.about-hero .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: aboutParticleFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.about-hero .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.about-hero .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.about-hero .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.about-hero .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.about-hero .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.about-hero .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.about-hero .particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.about-hero .particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.about-hero .particle:nth-child(9) { left: 90%; animation-delay: 2s; }
.about-hero .particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes aboutParticleFloat {
    0%, 100% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out;
}

.about-hero .title-line {
    display: block;
    color: white;
}

.about-hero .title-line.highlight {
    background: linear-gradient(45deg, #CE93D8, #AB47BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #CE93D8;
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.2s both;
}

.about-hero .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.about-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.about-hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.about-hero .feature-item i {
    color: #CE93D8;
    font-size: 1.1rem;
}

.about-hero .feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.about-hero .hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.about-hero .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInDown 1s ease-out 0.8s both;
}

.about-hero .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.about-hero .stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-hero .stat-item:hover::after {
    left: 100%;
}

.about-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #CE93D8;
    margin-bottom: 5px;
    display: block;
}

.about-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.about-hero .hero-badges {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease-out 1s both;
}

.about-hero .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-hero .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-hero .badge i {
    color: #CE93D8;
    font-size: 1.1rem;
}

.about-hero .badge span {
    color: white;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .about-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-hero .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-hero .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .about-hero .stat-item {
        min-width: 120px;
    }
    
    .about-hero .stat-number {
        font-size: 2rem;
    }
    
    .about-hero .hero-badges {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* About Page Enhanced Styles */

/* Enhanced Hero Section */
.about-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.about-hero .hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.about-hero .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.about-hero .stat-content {
    display: flex;
    flex-direction: column;
}

.about-hero .hero-trust-badges {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-hero .trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-hero .trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.about-hero .trust-badge i {
    font-size: 1rem;
    color: #4CAF50;
}

/* Enhanced Company Profile Section */
.company-profile {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.company-profile .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.company-profile .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-profile .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profile-card .card-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.profile-card .card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.profile-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.stat-card .stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.stat-card .stat-content {
    display: flex;
    flex-direction: column;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.profile-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.image-overlay .overlay-content i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.image-overlay .overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-overlay .overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Enhanced Professional Services Section */
.professional-services {
    padding: 5rem 0;
    background: white;
}

.professional-services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.professional-services .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.professional-services .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #666;
    font-weight: 500;
}

.service-list li i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Enhanced Certifications Section */
.certifications {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.certifications .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.certifications .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certifications .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.certification-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.certification-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.certification-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cert-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero .hero-trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .about-hero .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .service-category-card {
        padding: 1.5rem;
    }
    
    .certification-card {
        padding: 1.5rem;
    }
} 

/* Emergency Services Section */
.emergency-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.emergency-services .section-header h2 {
    color: #d32f2f;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.emergency-services .section-header p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.emergency-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #d32f2f;
}

.emergency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #f44336);
}

.emergency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f, #f44336);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.emergency-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.emergency-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.emergency-features {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.emergency-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.emergency-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
}

.emergency-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f, #f44336);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.emergency-btn:hover {
    background: linear-gradient(135deg, #f44336, #e53935);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211,47,47,0.3);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .emergency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .emergency-services .section-header h2 {
        font-size: 2rem;
    }
    
    .emergency-services .section-header p {
        font-size: 1rem;
    }
} 

/* Emergency Hero Section */
.emergency-hero {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

.emergency-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.emergency-badge i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.emergency-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.emergency-hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.emergency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.emergency-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.emergency-feature-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

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

.emergency-btn-primary {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #d32f2f;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.emergency-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #d32f2f;
    text-decoration: none;
}

.emergency-btn-primary i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.emergency-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.emergency-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

.emergency-btn-whatsapp i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Emergency Services Detailed */
.emergency-services-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.emergency-service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 4px solid #d32f2f;
}

.emergency-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f, #f44336);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.emergency-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f, #f44336);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #f44336, #e53935);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211,47,47,0.3);
    color: white;
    text-decoration: none;
}

/* Service Areas Emergency */
.service-areas-emergency {
    padding: 80px 0;
    background: white;
}

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

.area-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #d32f2f;
}

.area-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.area-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.area-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.area-card li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.area-card li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

/* Emergency Contact CTA */
.emergency-contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #d32f2f;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #d32f2f;
    text-decoration: none;
}

.cta-btn-primary i {
    margin-right: 10px;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #d32f2f;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-btn-secondary i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .emergency-hero h1 {
        font-size: 2rem;
    }
    
    .emergency-hero h2 {
        font-size: 1.2rem;
    }
    
    .emergency-features {
        grid-template-columns: 1fr;
    }
    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog Section and Blog Post Styles */
.blog-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e0f7ef 100%);
  padding: 60px 0 40px 0;
}
.blog-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}
.blog-section h2 {
  color: #388e3c;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.blog-section p {
  color: #333;
  font-size: 1.1rem;
}

.blog-post {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(76,175,80,0.10), 0 1.5px 6px rgba(76,175,80,0.08);
  padding: 48px 36px 36px 36px;
  position: relative;
  overflow: hidden;
}
.blog-post h1 {
  font-size: 2.3rem;
  color: #388e3c;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.blog-post h2 {
  font-size: 1.4rem;
  color: #4CAF50;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-post p {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.blog-post ul, .blog-post ol {
  margin: 18px 0 18px 24px;
  color: #444;
}
.blog-post li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.blog-post a {
  color: #4CAF50;
  text-decoration: underline;
  transition: color 0.2s;
}
.blog-post a:hover {
  color: #388e3c;
}
.blog-faq {
  background: #e8f5e9;
  border-left: 5px solid #4CAF50;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 36px 0 24px 0;
}
.blog-faq h3 {
  color: #388e3c;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.blog-faq p {
  color: #333;
  margin-bottom: 0;
}
.blog-post .btn-primary {
  display: inline-block;
  margin-top: 18px;
  background: #4CAF50;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(76,175,80,0.08);
  transition: background 0.2s, color 0.2s;
}
.blog-post .btn-primary:hover {
  background: #388e3c;
  color: #fff;
}
@media (max-width: 900px) {
  .blog-post {
    padding: 32px 12px 24px 12px;
  }
}
@media (max-width: 600px) {
  .blog-post {
    padding: 18px 4vw 18px 4vw;
    border-radius: 10px;
  }
  .blog-section {
    padding: 36px 0 20px 0;
  }
  .blog-section h2 {
    font-size: 1.5rem;
  }
}

/* Service Page Styles (rat-control.html) */
.service-hero {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 8px 32px rgba(76,175,80,0.10), 0 1.5px 6px rgba(76,175,80,0.08);
  padding: 48px 36px 0 36px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-hero h1 {
  font-size: 2.3rem;
  color: #388e3c;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.service-hero p {
  color: #444;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.service-content {
  max-width: 700px;
  margin: 0 auto 40px auto;
  background: #fff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 32px rgba(76,175,80,0.10), 0 1.5px 6px rgba(76,175,80,0.08);
  padding: 0 36px 36px 36px;
  position: relative;
  overflow: hidden;
}
.service-content h2 {
  font-size: 1.4rem;
  color: #4CAF50;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}
.service-content ul, .service-content ol {
  margin: 18px 0 18px 24px;
  color: #444;
}
.service-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.service-content a {
  color: #4CAF50;
  text-decoration: underline;
  transition: color 0.2s;
}
.service-content a:hover {
  color: #388e3c;
}
.service-faq {
  background: #e8f5e9;
  border-left: 5px solid #4CAF50;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 36px 0 24px 0;
}
.service-faq h3 {
  color: #388e3c;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-faq p {
  color: #333;
  margin-bottom: 0;
}
.service-content .btn-primary {
  display: inline-block;
  margin-top: 18px;
  background: #4CAF50;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(76,175,80,0.08);
  transition: background 0.2s, color 0.2s;
}
.service-content .btn-primary:hover {
  background: #388e3c;
  color: #fff;
}
.related-services {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #e0e0e0;
}
.related-services h3 {
  color: #388e3c;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.related-services ul {
  display: flex;
  gap: 18px;
  list-style: none;
  padding-left: 0;
}
.related-services li a {
  color: #4CAF50;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.related-services li a:hover {
  color: #388e3c;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .service-hero, .service-content {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 600px) {
  .service-hero, .service-content {
    padding-left: 4vw;
    padding-right: 4vw;
    border-radius: 10px;
  }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #6c757d;
    font-weight: 300;
}

.breadcrumb-item a {
    color: #4CAF50;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #45a049;
    text-decoration: underline;
}

.breadcrumb-item a i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Blog Content Styles */
.blog-content {
    padding: 40px 0;
}

/* Ensure blog card links are clickable */
.blog-card a {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.blog-card a:hover {
    text-decoration: underline;
}

.blog-card {
    position: relative;
    z-index: 1;
}

/* Blog Grid Layout */
.blog-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #388e3c 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.blog-hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.blog-hero-features .feature-item i {
    font-size: 1.2rem;
    color: #fff;
}

.blog-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #388e3c);
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #2c3e50;
}

.blog-card h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: #4CAF50;
}

.blog-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .blog-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 60px 0 40px;
    }
    
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-grid-section {
        padding: 40px 0;
    }
    
    .blog-card-image {
        height: 180px;
    }
}