:root {
    --primary: #006633;
    --primary-dark: #004d26;
    --primary-light: #00a859;
    --secondary: #ff6b35;
    --secondary-light: #ff8c5a;
    --accent: #ffc107;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --success: #28a745;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-hover: 0 25px 40px rgba(0,102,51,0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Add these to your existing style.css */

/* Blog Category Tag */
.blog-img {
    position: relative;
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

/* Service Categories Section */
.service-categories-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.category-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid #006633;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #006633;
}

.category-card:hover .category-icon i,
.category-card:hover .category-info h3,
.category-card:hover .category-info p,
.category-card:hover .post-count {
    color: white;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,102,51,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 28px;
    color: #006633;
    transition: color 0.3s ease;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.category-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.post-count {
    font-size: 11px;
    color: #006633;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* View All Button */
.view-all-blogs {
    text-align: center;
    margin-top: 40px;
}

.view-all-blogs .btn-secondary {
    background: transparent;
    border: 2px solid #006633;
    color: #006633;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.view-all-blogs .btn-secondary:hover {
    background: #006633;
    color: white;
}

/* Error Message */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* No Data States */
.no-services, .no-blogs {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    color: #666;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TOPBAR ========== */
.topbar {
    background: var(--primary);
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

/* Left Section */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.whatsapp-top {
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-top:hover {
    transform: scale(1.05);
    background: #128C7E;
}

.social-icons-top {
    display: flex;
    gap: 12px;
}

.social-icons-top a {
    color: white;
    font-size: 18px;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.social-icons-top a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Center Section - LOGO */
.topbar-center {
    flex: 0 0 auto;
}

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

.site-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 12px;
    transition: var(--transition);
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo-area span {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Right Section */
.topbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.phone-top {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: var(--transition);
}

.phone-top:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ========== SIDEBAR ========== */
.sidebar {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    background: var(--primary);
    padding: 25px;
    text-align: center;
    position: relative;
}

.close-sidebar {
    position: absolute;
    left: 20px;
    top: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.sidebar-logo i {
    font-size: 40px;
    color: var(--secondary);
}

.sidebar-logo h3 {
    color: white;
    margin-top: 10px;
    font-size: 18px;
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.sidebar-menu li a i {
    width: 25px;
    color: var(--primary);
}

.sidebar-menu li a:hover {
    background: var(--primary);
    color: white;
    padding-right: 35px;
}

.sidebar-menu li a:hover i {
    color: white;
}

.menu-toggle {
    position: fixed;
    top: 72px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.menu-toggle:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, rgba(0,102,51,0.85) 0%, rgba(0,77,38,0.85) 100%), url('cleaning_images/1778608949_house_cleaning.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 90px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.2;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 14px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 5px 20px rgba(255,107,53,0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,107,53,0.4);
    background: #ff5a2a;
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

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

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    color: var(--dark);
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 60px;
    font-size: 18px;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid #006633;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,102,51,0.8), rgba(0,77,38,0.8));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.service-info {
    padding: 25px;
    text-align: center;
}

.service-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.service-price {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f5e9 100%);
}

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

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border: 1px solid #006633;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

/* ========== COUNTER SECTION ========== */
.counter-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.counter-box i {
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.counter-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-slider {
    padding: 20px 0;
}

.testimonial-card {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #006633;
    margin: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

/* ========== BLOG SECTION ========== */
.blog-section {
    padding: 80px 0;
    background: var(--light);
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #006633;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 15px;
}

/* ========== BOOKING SECTION ========== */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
    border-radius: 60px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.booking-form textarea {
    border-radius: 25px;
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,102,51,0.1);
}

.booking-form button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
}

.success-message {
    background: var(--success);
    color: white;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* ========== FOOTER ========== */
.footer {
    background: #0a0a0a;
    color: #aaa;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}

.contact-info-footer p {
    margin-bottom: 12px;
}

.contact-info-footer a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-footer a:hover {
    color: var(--secondary);
}

.social-footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-left: 10px;
    margin-top: 20px;
    transition: var(--transition);
}

.social-footer a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

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

.footer-badges span {
    background: rgba(255,255,255,0.05);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-whatsapp, .float-call, .float-booking {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.float-whatsapp {
    background: #25D366;
    color: white;
    font-size: 28px;
}

.float-call {
    background: var(--primary);
    color: white;
    font-size: 24px;
}

.float-booking {
    background: var(--secondary);
    color: white;
    font-size: 24px;
}

.float-whatsapp:hover, .float-call:hover, .float-booking:hover {
    transform: scale(1.1);
    width: 65px;
    border-radius: 30px;
}

.float-text {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-buttons a:hover .float-text {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* ========== RESPONSIVE (FIXED - SHOW LOGO + TITLE ON MOBILE) ========== */
@media (max-width: 992px) {
    .whatsapp-top span,
    .phone-top span {
        display: none;
    }
    
    .whatsapp-top,
    .phone-top {
        padding: 10px 15px;
    }
    
    .site-logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-area span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .topbar-left .social-icons-top {
        display: none;
    }
    
    .phone-top {
        background: transparent;
        padding: 8px;
    }
    
    .phone-top i {
        font-size: 20px;
    }
    
    .whatsapp-top {
        padding: 8px 12px;
    }
    
    .whatsapp-top i {
        font-size: 20px;
    }
    
    /* LOGO ON MOBILE - SHOW BOTH LOGO AND TITLE */
    .site-logo {
        width: 35px;
        height: 35px;
    }
    
    .logo-area span {
        font-size: 12px;
        display: inline-block; /* SHOW on mobile - FIXED */
        white-space: nowrap;
    }
    
    /* Adjust logo area gap on mobile */
    .logo-area {
        gap: 8px;
    }
    
    .services-grid, .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 550px) {
    /* For very small screens, reduce text size but still show */
    .logo-area span {
        font-size: 10px;
        white-space: normal;
        max-width: 120px;
        line-height: 1.2;
    }
    
    .site-logo {
        width: 30px;
        height: 30px;
    }
    
    .logo-area {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        width: 28px;
        height: 28px;
    }
    
    .logo-area span {
        font-size: 9px;
        max-width: 100px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .counter-number {
        font-size: 32px;
    }
}

/* For tablets - keep text but smaller */
@media (min-width: 769px) and (max-width: 1024px) {
    .site-logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-area span {
        font-size: 16px;
    }
}