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

:root {
    --primary: #0f2b3d;
    --primary-light: #1e4a6f;
    --secondary: #60a5fa;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px -8px rgba(15, 43, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -10px rgba(15, 43, 61, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 8px 16px -4px rgba(15, 43, 61, 0.2);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0f9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

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

.hero-badge {
    display: inline-block;
    background: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.6s ease-out;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    animation: slideUp 0.6s ease-out 0.2s both;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
    animation: slideUp 0.6s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideUp 0.6s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: slideUp 0.6s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 4px;
}

.hero-image {
    position: relative;
    height: 400px;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

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

.search-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.search-container {
    background: white;
    border-radius: 100px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.search-container:hover {
    transform: translateY(-2px);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-input {
    width: 100%;
    height: 64px;
    border: none;
    padding: 0 20px 0 50px;
    font-size: 1rem;
    border-radius: 100px;
    outline: none;
    background: transparent;
}

.search-input:focus {
    box-shadow: 0 0 0 2px rgba(15, 43, 61, 0.1);
}

.search-select {
    width: 160px;
    height: 64px;
    border: none;
    border-left: 1px solid var(--border);
    padding: 0 16px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    outline: none;
    color: var(--text);
    font-weight: 500;
}

.search-btn {
    height: 64px;
    padding: 0 36px;
    border-radius: 100px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: var(--primary-light);
    transform: scale(1.02);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: #e6f0f9;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.125rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(15, 43, 61, 0.15);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0f9ff, #e6f0f9);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.category-count {
    color: var(--text-light);
    font-size: 0.875rem;
}

.cities-section {
    background: var(--bg-light);
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.city-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.city-card:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px -10px rgba(15, 43, 61, 0.3);
}

.city-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.city-count {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 48px;
    padding: 80px 40px;
    color: white;
    text-align: center;
    margin: 80px 24px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.cta-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

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

.cta-note {
    margin-top: 24px;
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

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

.footer-title {
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-links i {
    margin-right: 8px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 24px;
        gap: 12px;
    }
    
    .search-select, .search-btn {
        width: 100%;
        border-radius: 60px;
        border-left: none;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        margin: 40px 16px;
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* Categories Page Styles */
.page-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.categories-section {
    padding: 60px 0;
}

.category-article {
    background: white;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 24px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.category-article:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.category-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-emerald {
    background: linear-gradient(135deg, #10b981, #059669);
}

.icon-indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.icon-orange {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.icon-teal {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
}

.icon-violet {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.category-article:hover .category-title {
    color: #4f46e5;
}

.category-count {
    font-size: 0.875rem;
    color: #6b7280;
}

.category-arrow {
    color: #9ca3af;
    transition: color 0.3s;
}

.category-article:hover .category-arrow {
    color: #4f46e5;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    padding: 4px 8px;
    background: #f3f4f6;
    font-size: 0.75rem;
    color: #4b5563;
    border-radius: 6px;
}

.footer-text {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.footer-text p {
    font-size: 0.875rem;
    color: #4b5563;
}

.footer-text a {
    color: #4f46e5;
    font-weight: 500;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.cta-section-alt {
    padding: 64px 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-section-alt p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #4f46e5;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .category-header {
        gap: 12px;
    }
    
    .category-icon-box {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .category-title {
        font-size: 1.125rem;
    }
}

/* Form Styles */
.business-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .business-form {
        padding: 24px;
    }
}

/* Content Pages */
.content-page {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.content-page h2 {
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary);
    width: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .content-page {
        padding: 24px;
    }
}
