    /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Color Variables (JustDial Brand) */
:root {
    --primary-orange: #ff6b35;
    --primary-blue: #007bff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --white: #ffffff;
    --black: #000000;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-container {
    padding: 0 1rem;
}

.logo {
    height: 75px;
}

/* Mobile Header */
.mobile-header {
    display: block;
    padding: 1rem 0;
}

.mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mobile-actions {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-medium);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: var(--gray-light);
    color: var(--primary-orange);
}

.mobile-search {
    width: 100%;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--gray-light);
    border-radius: 25px;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

.search-icon {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1rem;
    outline: none;
    color: var(--gray-dark);
}

.search-input::placeholder {
    color: var(--gray-medium);
}

.voice-icon {
    color: var(--gray-medium);
    font-size: 1.1rem;
    cursor: pointer;
}

.voice-icon:hover {
    color: var(--primary-orange);
}

/* Desktop Header */
.desktop-header {
    display: none;
    padding: 1rem 0;
}

.desktop-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.location-search {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    max-width: 600px;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--gray-light);
    border-radius: 12px;
    min-width: 200px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.location-selector i {
    color: var(--primary-orange);
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}

.search-container .search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: none;
    outline: none;
}

.search-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #e55a2b;
}

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hiring-link {
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hiring-link:hover {
    color: #0056b3;
}

.download-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    color: white;
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mobile-hero {
    display: block;
}

.mobile-hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mobile-hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.desktop-hero {
    display: none;
}

.desktop-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.desktop-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.highlight {
    color: #ffd700;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Featured Services */
.featured-services {
    padding: 3rem 1rem;
    background: white;
}

.featured-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.service-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    background: var(--gray-light);
    padding: 2rem 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Responsive Design */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
    
    .desktop-header {
        display: block;
    }
    
    .mobile-hero {
        display: none;
    }
    
    .desktop-hero {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero {
        margin-top: 100px;
        padding: 4rem 1rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .tag-btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }