/* YeboFreelancer - Modern Professional Freelancer Aesthetic */

:root {
    /* Color Palette - Warm, energetic, and professional */
    --primary-orange: #FF6B35;
    --primary-deep: #2D3142;
    --accent-gold: #F4A259;
    --accent-teal: #4ECDC4;
    --bg-light: #F7F7F2;
    --bg-dark: #1A1B26;
    --text-dark: #2D3142;
    --text-light: #F7F7F2;
    --gray-100: #E8E9ED;
    --gray-200: #D1D3DA;
    --gray-300: #9FA2B4;
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 49, 66, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 49, 66, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 49, 66, 0.16);
    --shadow-glow: 0 0 32px rgba(255, 107, 53, 0.3);
}

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

body {
    font-family: var(--font-display);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Header & Navigation */
.site-header {
    background: rgba(247, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-deep);
    letter-spacing: -0.02em;
}

.logo-accent {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary-orange);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-menu a, .nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after, .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2D3142 0%, #1A1B26 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-200);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Services Section */
.services-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.benefit-card {
    background: var(--bg-light);
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-300);
}

/* Process Section */
.process-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.process-section .process-steps {
    max-width: 900px;
    margin: var(--space-2xl) auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-deep);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-300);
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.card-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.card-icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.card-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.service-links {
    list-style: none;
    flex: 1;
}

.service-links li {
    margin-bottom: var(--space-xs);
}

.service-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: var(--space-xs) 0;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.service-links a:hover {
    color: var(--primary-orange);
    padding-left: var(--space-sm);
}

.service-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.2s ease;
}

.service-links a:hover::before {
    width: 8px;
}

/* Service Detail Pages */
.service-detail-hero {
    background: linear-gradient(135deg, var(--primary-deep) 0%, #1A1B26 100%);
    padding: var(--space-3xl) 0 var(--space-2xl);
    color: white;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    color: var(--gray-200);
}

.breadcrumb a {
    color: var(--accent-teal);
    text-decoration: none;
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

.service-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.service-category-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--primary-orange);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    font-family: var(--font-mono);
}

.service-content {
    padding: var(--space-3xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-2xl);
}

.main-content {
    max-width: 800px;
}

.service-description h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-deep);
    margin-bottom: var(--space-md);
}

.service-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

/* Service Image Placeholder */
.service-image-placeholder {
    margin: var(--space-xl) 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-featured-image {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.benefits-list li {
    padding: var(--space-xs);
    padding-left: var(--space-xl);
    margin-bottom: var(--space-xs);
    position: relative;
    background: var(--bg-light);
    border-radius: 8px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: var(--space-md);
    color: var(--primary-orange);
    font-weight: 900;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-home-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.faq-section {
    margin-top: var(--space-2xl);
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-orange);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: var(--space-md) var(--space-lg);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.process-steps {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.step {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-orange);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--gray-300);
    margin: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.tech-badge {
    padding: var(--space-xs) var(--space-md);
    background: var(--primary-deep);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-mono);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-deep) 0%, #1A1B26 100%);
    padding: var(--space-lg);
    border-radius: 16px;
    color: white;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: var(--space-sm);
}

.cta-card p {
    font-size: 0.95rem;
    color: var(--gray-200);
    margin-bottom: var(--space-md);
}

.cta-card .cta-button {
    width: 100%;
    text-align: center;
    margin-bottom: var(--space-md);
}

.contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
}

.contact-info p {
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
}

.related-services {
    background: white;
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.related-services h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: var(--space-md);
}

.related-services ul {
    list-style: none;
}

.related-services li {
    margin-bottom: var(--space-sm);
}

.related-services a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.related-services a:hover {
    color: var(--primary-orange);
}

/* Testimonial Section */
.testimonial-section {
    background: var(--bg-light);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-deep);
    margin-bottom: var(--space-xl);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: var(--gray-300);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: var(--primary-deep);
    padding: var(--space-3xl) 0;
    text-align: center;
    color: white;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--space-sm);
}

.contact-section p {
    font-size: 1.1rem;
    color: var(--gray-200);
    margin-bottom: var(--space-xl);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: var(--gray-200);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

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

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--gray-200);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

/* Phone Number Obfuscation (Anti-Spam) */
.obfuscated-phone {
    direction: ltr;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-deep);
    color: white;
    padding: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: var(--space-sm);
}

.cookie-content p:first-child {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    margin-top: var(--space-md);
}

.cookie-btn {
    padding: var(--space-sm) var(--space-xl);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-accept {
    background: var(--primary-orange);
    color: white;
}

.cookie-accept:hover {
    background: var(--accent-gold);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-learn-more {
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-learn-more:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: var(--space-md);
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .process-steps {
        gap: var(--space-sm);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid .footer-column:first-child {
        grid-column: 1;
    }
}

/* FAQ Accordion Styles */
.faq-container {
    margin: var(--space-xl) 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
}

.faq-question {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--gray-300);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 var(--space-lg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin: 0;
}

