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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #4c6ef5;
    color: white;
}

.btn-primary:hover {
    background-color: #364fc7;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #4c6ef5;
    border: 2px solid #4c6ef5;
}

.btn-secondary:hover {
    background-color: #4c6ef5;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background-color: #333;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

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

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4c6ef5;
}

.nav-menu a.active {
    color: #4c6ef5;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.highlight {
    color: #4c6ef5;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.visual-placeholder {
    text-align: center;
    padding: 3rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Animation */
.animate-text {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #4c6ef5;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.step h3 {
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    margin-bottom: 0;
}

/* Experts Section */
.experts {
    padding: 80px 0;
    background-color: #fff;
}

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

.expert-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.expert-avatar {
    margin-bottom: 1.5rem;
}

.expert-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4c6ef5, #364fc7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
}

.expert-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.expert-category {
    color: #4c6ef5;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.expert-rating {
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    margin-right: 0.5rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.expert-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.experts-cta {
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4c6ef5;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.privacy-agreement {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
    position: relative;
    padding-left: 0;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

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

.checkbox-label a {
    color: #4c6ef5;
    text-decoration: none;
    margin: 0 2px;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

#submit-btn:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

#submit-btn:disabled:hover {
    background-color: #ccc;
    transform: none;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4c6ef5, #5c7cfa);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.review-service {
    color: #666;
    font-size: 0.85rem;
    margin-top: 2px;
}

.review-rating {
    font-size: 0.9rem;
}

.review-message {
    position: relative;
}

.message-bubble {
    background: #f1f3f4;
    border-radius: 18px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    position: relative;
    margin-bottom: 0.5rem;
}

.message-bubble::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f1f3f4;
}

.message-time {
    font-size: 0.75rem;
    color: #999;
    text-align: right;
    margin-top: 0.25rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    margin-bottom: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4c6ef5;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.disclaimer {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid #555;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb;
    margin: 0;
    text-align: left;
}

.disclaimer-text strong {
    color: #ddd;
    font-weight: 600;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

/* Hero Small for pages */
.hero-small {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.hero-small .hero-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.hero-small .hero-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Specific Styles */
.faq-section {
    padding: 60px 0;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.category-btn:hover {
    border-color: #4c6ef5;
    color: #4c6ef5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(6, 139, 183, 0.2);
}

.category-btn.active {
    background-color: #4c6ef5;
    border-color: #4c6ef5;
    color: white;
    box-shadow: 0 4px 12px rgba(6, 139, 183, 0.3);
    transform: translateY(-2px);
    font-weight: 600;
}

.faq-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.faq-search input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: #4c6ef5;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    border-color: #4c6ef5;
    box-shadow: 0 4px 12px rgba(6, 139, 183, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #4c6ef5;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-question {
    background-color: #f0f8ff;
    border-bottom-color: #4c6ef5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    border-top: 1px solid #4c6ef5;
    background-color: #f8f9fa;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    color: #666;
    line-height: 1.6;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-contact {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.faq-contact-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.faq-contact-content p {
    color: #666;
    margin-bottom: 2rem;
}

.faq-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.no-results-message {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 16px;
    margin: 2rem 0;
}

.no-results-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.no-results-content p {
    color: #666;
}

.no-results-content a {
    color: #4c6ef5;
    text-decoration: none;
}

.no-results-content a:hover {
    text-decoration: underline;
}

/* FAQ Results Count */
.faq-results-count {
    text-align: center;
    margin: 1rem 0 2rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    color: #1976d2;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid #90caf9;
}

/* 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;
}

/* Expert Profile Styles */
.expert-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expert-hero-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.expert-avatar-large {
    position: relative;
    display: inline-block;
}

.expert-avatar-large img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.expert-badge {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: linear-gradient(135deg, #4c6ef5, #5c7cfa);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(6, 139, 183, 0.3);
}

.expert-category-tag {
    display: inline-block;
    background-color: #e3f2fd;
    color: #4c6ef5;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.expert-name {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.expert-tagline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.expert-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
}

.expert-actions {
    display: flex;
    gap: 1rem;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Expert Navigation */
.expert-nav {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 80px;
    z-index: 100;
    transition: all 0.3s ease;
}

.expert-nav.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.expert-nav-menu {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.expert-nav-menu .nav-link {
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.expert-nav-menu .nav-link:hover {
    color: #4c6ef5;
    background-color: #f8f9fa;
}

.expert-nav-menu .nav-link.active {
    color: #4c6ef5;
    border-bottom-color: #4c6ef5;
    background-color: #f8f9fa;
}

/* Expert Content Layout */
.expert-content {
    padding: 3rem 0;
}

.expert-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.expert-main {
    min-width: 0;
}

.content-section {
    margin-bottom: 3rem;
    scroll-margin-top: 140px;
}

.section-title {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f3f4;
}

/* Overview Section */
.overview-content {
    line-height: 1.8;
    color: #666;
}

.overview-content h3 {
    color: #333;
    margin: 2rem 0 1rem 0;
    font-size: 1.25rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 2rem 0;
}

.tag {
    background-color: #e8f5e8;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.timeline {
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    min-width: 120px;
    font-weight: 600;
    color: #4c6ef5;
    font-size: 0.9rem;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-package {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-package:hover {
    border-color: #4c6ef5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(6, 139, 183, 0.15);
}

.service-package.popular {
    border-color: #4c6ef5;
    background: linear-gradient(135deg, #f8fdff 0%, #e8f7fa 100%);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #4c6ef5, #5c7cfa);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.package-title {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4c6ef5;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

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

.package-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.duration-icon {
    font-size: 1rem;
}

.package-btn {
    width: 100%;
    justify-content: center;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

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

.view-detail-btn {
    background: white;
    color: #4c6ef5;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-detail-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.portfolio-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Reviews Section */
.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.rating-overview {
    text-align: center;
    min-width: 150px;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.bar-label {
    min-width: 30px;
    color: #666;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4c6ef5, #5c7cfa);
    transition: width 0.3s ease;
}

.bar-count {
    min-width: 30px;
    text-align: right;
    color: #666;
    font-weight: 500;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
}

.review-rating {
    font-size: 1rem;
}

.review-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-helpful {
    display: flex;
    gap: 0.5rem;
}

.helpful-btn {
    background: none;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    border-color: #4c6ef5;
    color: #4c6ef5;
    background: #f0f8ff;
}

/* Expert Sidebar */
.expert-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #e8f5e8;
    border-radius: 8px;
    color: #2e7d32;
    font-size: 0.9rem;
    font-weight: 500;
}

.response-icon {
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-text {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.stats-item:last-child {
    border-bottom: none;
}

.stats-label {
    color: #666;
    font-size: 0.9rem;
}

.stats-value {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.similar-experts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.similar-expert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.similar-expert-item:hover {
    background-color: #f8f9fa;
}

.similar-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.similar-info {
    flex: 1;
    min-width: 0;
}

.similar-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.similar-category {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.similar-rating {
    color: #4c6ef5;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4c6ef5;
    box-shadow: 0 0 0 3px rgba(6, 139, 183, 0.1);
}

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

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-small .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .faq-categories {
        justify-content: flex-start;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-contact-buttons .btn {
        width: 200px;
    }
    
    .services-grid,
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-small {
        padding: 100px 0 40px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-search {
        margin: 0 1rem 2rem;
    }
    
    /* Expert Profile Mobile */
    .expert-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .expert-name {
        font-size: 2rem;
    }
    
    .expert-tagline {
        font-size: 1.125rem;
    }
    
    .expert-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .expert-actions {
        flex-direction: column;
    }
    
    .expert-nav-menu {
        padding: 0 1rem;
    }
    
    .expert-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .expert-sidebar {
        order: -1;
    }
    
    .modal-content {
        margin: 1rem;
        max-width: none;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-date {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    /* Experts Listing Mobile */
    .experts-hero {
        padding: 100px 0 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .results-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

/* Experts Listing Styles */
.experts-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.experts-hero .hero-title {
    font-size: 2.75rem;
    color: #333;
    margin-bottom: 1rem;
}

.experts-hero .hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.search-bar {
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: #4c6ef5;
    box-shadow: 0 4px 20px rgba(6, 139, 183, 0.2);
}

.search-bar input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.search-btn {
    padding: 16px 24px;
    background: #4c6ef5;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #364fc7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4c6ef5;
    display: block;
}

.hero-stat .stat-label {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* Filters Section */
.experts-filters {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: end;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 140px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.filter-group select {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #4c6ef5;
}

.clear-filters-btn {
    padding: 10px 16px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: end;
}

.clear-filters-btn:hover {
    background: #e9ecef;
    border-color: #ccc;
}

/* Results Section */
.experts-grid-section {
    padding: 3rem 0;
    min-height: 60vh;
}

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

.results-count {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.view-toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    padding: 10px 12px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.view-btn.active {
    background: #4c6ef5;
    color: white;
}

.view-btn:hover:not(.active) {
    background: #e9ecef;
}

/* Expert Cards */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.experts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.experts-list .expert-card {
    display: flex;
    padding: 2rem;
    align-items: center;
    gap: 2rem;
}

.experts-list .expert-card-header {
    flex-shrink: 0;
}

.experts-list .expert-info {
    flex: 1;
}

.experts-list .expert-actions {
    flex-shrink: 0;
    flex-direction: column;
    gap: 0.75rem;
}

.expert-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #4c6ef5;
}

.expert-card-header {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.expert-avatar {
    position: relative;
    display: inline-block;
}

.expert-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.expert-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
}

.expert-status.online {
    background: #4caf50;
}

.expert-status.away {
    background: #ff9800;
}

.expert-status.offline {
    background: #9e9e9e;
}

.expert-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-badge.top {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #b8860b;
}

.expert-badge.premium {
    background: linear-gradient(135deg, #4c6ef5, #5c7cfa);
    color: white;
}

.expert-badge.standard {
    background: #e0e0e0;
    color: #666;
}

.expert-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.expert-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.expert-name a:hover {
    color: #4c6ef5;
}

.expert-category {
    color: #4c6ef5;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.expert-tagline {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.expert-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.expert-rating .stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.expert-rating .rating-text {
    color: #666;
    font-size: 0.8rem;
}

.expert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.skill-tag {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.expert-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
}

.meta-icon {
    font-size: 0.9rem;
}

.expert-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
}

.btn-small.btn-outline {
    flex: 0 0 auto;
}

.btn-small.btn-primary {
    flex: 1;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    padding: 12px 32px;
    font-size: 1rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-results p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA Section */
.expert-cta-section {
    background: linear-gradient(135deg, #4c6ef5, #5c7cfa);
    color: white;
    padding: 4rem 0;
}

.expert-cta-section .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.expert-cta-section h2 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.expert-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.expert-cta-section .btn-primary {
    background: white;
    color: #4c6ef5;
    border: 2px solid white;
    font-weight: 600;
}

.expert-cta-section .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

/* Favorited button state */
.btn.favorited {
    background-color: #ffebee !important;
    border-color: #e91e63 !important;
    color: #e91e63 !important;
}

/* =============================================================================
   BECOME EXPERT PAGE STYLES
   ============================================================================= */

/* Become Expert Hero Section */
.become-expert-hero {
    background: linear-gradient(135deg, #4c6ef5 0%, #5c7cfa 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.become-expert-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="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.become-expert-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.become-expert-hero .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-text {
    font-weight: 500;
    font-size: 1.1rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
    transform: translateY(20px);
    animation: floatUp 1s ease-out 0.5s both;
}

.hero-card .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-card .expert-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-card .expert-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-card .expert-info p {
    color: #666;
    margin-bottom: 8px;
}

.hero-card .rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card .stars {
    font-size: 0.9rem;
}

.hero-card .score {
    font-weight: 600;
    color: #4c6ef5;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.card-stats .stat {
    text-align: center;
}

.card-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4c6ef5;
    margin-bottom: 4px;
}

.card-stats .label {
    font-size: 0.9rem;
    color: #666;
}

/* Registration Steps */
.registration-steps {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4c6ef5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: #ddd;
    margin: 0 20px;
    position: relative;
    top: -50px;
}

/* Registration Form Section */
.registration-form-section {
    padding: 80px 0;
}

.registration-form-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
}

.form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #4c6ef5 0%, #5c7cfa 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 40px;
}

.form-step.active {
    display: block;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.step-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4c6ef5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4c6ef5;
    box-shadow: 0 0 0 3px rgba(6, 139, 135, 0.1);
}

.form-group.focused label {
    color: #4c6ef5;
}

.form-group input.valid {
    border-color: #27ae60;
}

.form-group input.invalid {
    border-color: #e74c3c;
}

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

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Character Count */
.char-count {
    position: absolute;
    right: 12px;
    bottom: 8px;
    font-size: 0.85rem;
    color: #999;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: #4c6ef5;
    background: rgba(6, 139, 135, 0.05);
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-icon {
    font-size: 2rem;
}

.file-upload-text p {
    font-weight: 500;
    color: #333;
    margin: 0;
}

.file-upload-text small {
    color: #666;
}

/* Uploaded Files */
.uploaded-files {
    margin-top: 16px;
}

.uploaded-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    font-size: 1.2rem;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.file-size {
    font-size: 0.8rem;
    color: #666;
}

.remove-file {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.remove-file:hover {
    background: rgba(231, 76, 60, 0.1);
}

/* Checkboxes */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    margin-bottom: 0 !important;
}

.checkbox-label:hover {
    background: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.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: #4c6ef5;
    border-color: #4c6ef5;
}

.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: 600;
}

.agreement-label {
    padding: 16px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
}

.agreement-label a {
    color: #4c6ef5;
    text-decoration: none;
    font-weight: 500;
}

.agreement-label a:hover {
    text-decoration: underline;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.next-step,
.prev-step,
.submit-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.next-step,
.submit-btn {
    background: #4c6ef5;
    color: white;
}

.next-step:hover,
.submit-btn:hover {
    background: #5c7cfa;
    transform: translateY(-1px);
}

.prev-step {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.prev-step:hover {
    border-color: #4c6ef5;
    color: #4c6ef5;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 4px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

/* Benefits Sidebar */
.benefits-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card,
.stats-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card h3,
.stats-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list .benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-list strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.benefit-list p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4c6ef5;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* Become Expert FAQ */
.become-expert-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.become-expert-faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.become-expert-faq .faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.become-expert-faq .faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.become-expert-faq .faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.become-expert-faq .faq-question:hover {
    background: #f8f9fa;
}

.become-expert-faq .faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #333;
}

.become-expert-faq .faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4c6ef5;
    transition: transform 0.3s ease;
}

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

.become-expert-faq .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.become-expert-faq .faq-item.active .faq-answer {
    padding: 0 24px 24px;
}

.become-expert-faq .faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background: #f0f0f0;
}

.modal-body {
    padding: 0 30px;
}

.modal-body p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #666;
}

.next-steps {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.next-steps h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.next-steps ol {
    margin: 0;
    padding-left: 20px;
}

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

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

/* Animations */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .become-expert-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .become-expert-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 20px 0;
        top: 0;
    }
    
    .registration-form-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

/* =============================================================================
   SERVICE CATEGORY PAGE STYLES
   ============================================================================= */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, #4c6ef5 0%, #5c7cfa 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-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="dots" 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(%23dots)"/></svg>');
    opacity: 0.3;
}

.development-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.service-breadcrumb a:hover {
    opacity: 1;
}

.service-breadcrumb span {
    opacity: 0.6;
}

.service-hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

.service-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.service-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
}

.service-hero-buttons .btn-primary,
.service-hero-buttons .btn-outline {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
}

.service-hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero Visual */
.service-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
}

.visual-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.visual-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.card-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.visual-card .card-content p {
    margin: 0 0 8px 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.card-price {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Tech Stack Showcase */
.tech-stack-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-category h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.9;
}

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

.tech-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.category-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

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

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

.category-services {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.category-services li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.category-services li::before {
    content: '•';
    color: #4c6ef5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.category-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: #4c6ef5;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
}

/* Service Packages */
.service-packages {
    padding: 80px 0;
    background: white;
}

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

.package-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border-color: #4c6ef5;
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4c6ef5;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 32px;
    text-align: center;
}

.package-card.popular .package-header {
    background: linear-gradient(135deg, #4c6ef5 0%, #5c7cfa 100%);
    color: white;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4c6ef5;
}

.package-card.popular .price-amount {
    color: white;
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.package-content {
    padding: 32px;
}

.package-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.package-features li {
    padding: 10px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-features li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    width: 16px;
    text-align: center;
}

.package-duration {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 24px;
}

.package-btn {
    width: 100%;
    padding: 14px;
    background: #4c6ef5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.package-btn:hover {
    background: #5c7cfa;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.tech-stack-category {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tech-stack-category:hover {
    transform: translateY(-5px);
}

.tech-stack-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.tech-logo {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

.tech-item span {
    font-weight: 500;
    color: #555;
}

/* Featured Experts */
.featured-experts {
    padding: 80px 0;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.view-all-btn {
    color: #4c6ef5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: #5c7cfa;
}

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

.expert-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.expert-avatar {
    position: relative;
}

.expert-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.expert-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.expert-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.expert-info p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.expert-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    font-size: 0.8rem;
}

.rating-score {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.expert-bio {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 16px;
}

.expert-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.specialty-tag {
    background: #f8f9fa;
    color: #555;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.expert-stats {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.expert-stats .stat {
    text-align: center;
    flex: 1;
}

.expert-stats .number {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.expert-stats .label {
    font-size: 0.8rem;
    color: #666;
}

.expert-actions {
    display: flex;
    gap: 12px;
}

.expert-actions .btn-outline,
.expert-actions .btn-primary {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.expert-actions .btn-outline {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    text-decoration: none;
}

.expert-actions .btn-outline:hover {
    border-color: #4c6ef5;
    color: #4c6ef5;
}

.expert-actions .btn-primary {
    background: #4c6ef5;
    color: white;
    border: none;
    cursor: pointer;
}

.expert-actions .btn-primary:hover {
    background: #5c7cfa;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto 0;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4c6ef5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: #ddd;
    margin: 0 10px;
    position: relative;
    top: -40px;
}

/* Service FAQ */
.service-faq {
    padding: 80px 0;
    background: white;
}

.service-faq .faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.service-faq .faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-faq .faq-item:hover {
    background: #e9ecef;
}

.service-faq .faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-faq .faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #333;
}

.service-faq .faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4c6ef5;
    transition: transform 0.3s ease;
}

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

.service-faq .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-faq .faq-item.active .faq-answer {
    padding: 0 24px 24px;
}

.service-faq .faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4c6ef5 0%, #5c7cfa 100%);
    color: white;
    text-align: center;
}

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

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

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

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .service-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .package-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-items {
        grid-template-columns: 1fr;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 20px 0;
        top: 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}