* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0F172A;
    background-color: #FFFFFF;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Color Variables - Solid Colors Only */
:root {
    --primary: #1E3A8A;
    --primary-dark: #172554;
    --primary-light: #3B82F6;
    --secondary: #0D9488;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-gray: #475569;
    --text-light: #64748B;
    --border: #E2E8F0;
    --white: #FFFFFF;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.marketplace-badges {
    display: flex;
    gap: 12px;
}

.badge {
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s;
}

.badge:hover {
    transform: translateY(-2px);
}

.fiverr {
    background: #1dbf73;
    color: white;
}

.upwork {
    background: #14a800;
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}







/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-primary-light {
    background: var(--white);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: var(--bg-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content h1 .highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 15px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-card {
    background: var(--white);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    transition: all 0.3s;
    background: var(--bg-light);
}

.card-item:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-item i {
    font-size: 32px;
    color: var(--primary);
}

.card-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 32px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    letter-spacing: 0.5px;
}

/* Training Section */
.training {
    padding: 80px 0;
    background: var(--bg-light);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.training-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.training-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.training-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.training-icon i {
    font-size: 32px;
    color: var(--primary);
}

.training-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.training-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.training-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.training-meta i {
    margin-right: 6px;
}

.training-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.btn-training {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
    transition: all 0.3s;
}

.btn-training:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.training-cta {
    text-align: center;
    margin-top: 48px;
}

/* Agency Section */
.agency {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.agency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.agency-content .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.agency-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.agency-content h2 .highlight {
    color: var(--secondary);
}

.agency-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.agency-features {
    list-style: none;
    margin-bottom: 32px;
}

.agency-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.agency-features i {
    color: var(--secondary);
    font-size: 20px;
}

.agency-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-block {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.stat-block .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    display: block;
}

.stat-block .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 250px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: white;
    opacity: 0.8;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: var(--text-gray);
    margin-bottom: 12px;
}

.portfolio-tech {
    display: inline-block;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary);
}

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    position: relative;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.testimonial-author h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.cta-wrapper {
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-wrapper p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
footer {
    background: #0F172A;
    color: #CBD5E0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col .logo {
    margin-bottom: 20px;
}

.footer-col .logo-text {
    color: white;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: var(--primary);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links, .marketplace-badges {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
    	display: block;
	}

	.hero-buttons .btn-primary{
		margin-bottom: 10px;
	}
	    
    .hero-stats {
        justify-content: start;
    }

    .card-item {
	    display: block;
	}

	.agency-stats {
		display: block;
	}

	.stat-block {
	    margin-top: 9px;
	}
    
    .services-grid,
    .training-grid,
    .portfolio-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .agency-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}
















/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: var(--primary);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page */
.story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.story-content p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-box {
    background: #f8fafc;
    padding: 32px;
    text-align: center;
    border-radius: 20px;
}

.stat-box .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
}

.mission-vision {
    padding: 80px 0;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mv-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mv-icon i {
    font-size: 32px;
    color: #667eea;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-title {
    color: #667eea;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    color: #4a5568;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s;
}

.team-social a:hover {
    background: #667eea;
    color: white;
}

.partners {
    padding: 60px 0;
    background: #f8fafc;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.partner-logo {
    text-align: center;
    font-weight: 700;
    color: #4a5568;
    font-size: 18px;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-detailed-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
}

.service-detailed-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-detailed-icon i {
    font-size: 28px;
    color: white;
}

.service-detailed-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-detailed-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detailed-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detailed-card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detailed-card ul li i {
    color: #667eea;
}

.service-tech {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #667eea;
    font-weight: 500;
}

.process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #4a5568;
}

.pricing-models {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 16px;
}

.pricing-card ul {
    list-style: none;
    margin-top: 24px;
}

.pricing-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Training Page */
.featured-courses {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.course-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.course-card.featured {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.course-image i {
    font-size: 40px;
    color: #667eea;
}

.course-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.course-details {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    font-size: 13px;
    color: #4a5568;
}

.course-price {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.course-price span {
    font-size: 16px;
    color: #a0aec0;
    text-decoration: line-through;
    margin-left: 8px;
}

.btn-course {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
    transition: all 0.3s;
}

.learning-format {
    padding: 80px 0;
    background: #f8fafc;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.format-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
}

.format-card i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.format-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.format-card ul {
    list-style: none;
    margin-top: 16px;
}

.format-card ul li {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 6px;
}

.success-stories {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.story-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    position: relative;
}

.story-quote {
    font-size: 60px;
    color: #667eea;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
}

.story-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-author strong {
    display: block;
}

.story-author span {
    font-size: 14px;
    color: #4a5568;
}

.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

/* Agency Page */
.agency-hero {
    padding: 80px 0;
    background: #f8fafc;
}

.agency-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.agency-hero-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.agency-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.agency-hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agency-hero-features i {
    color: #667eea;
}

.agency-hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.stat-circle {
    text-align: center;
}

.stat-circle .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
}

.talent-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.category-card i {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: #4a5568;
}

.agency-process {
    padding: 80px 0;
    background: #f8fafc;
}

.agency-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.agency-step {
    text-align: center;
}

.agency-step .step-number {
    margin-bottom: 20px;
}

.agency-pricing {
    padding: 80px 0;
}

.agency-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.agency-price-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
}

.agency-price-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.agency-price-card .price {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
    margin: 20px 0;
}

.agency-price-card .price span {
    font-size: 16px;
    font-weight: normal;
}

.agency-price-card ul {
    list-style: none;
    margin: 24px 0;
}

.agency-price-card ul li {
    margin-bottom: 12px;
}

.for-freelancers {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.freelancers-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.freelancers-content ul {
    list-style: none;
    margin: 24px 0;
}

.freelancers-content ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.freelancers-content ul li i {
    color: #667eea;
}

.freelancers-image {
    text-align: center;
}

.freelancers-image i {
    font-size: 200px;
    opacity: 0.3;
}

/* Portfolio Page */
.portfolio-filter {
    padding: 40px 0;
    text-align: center;
}

.filter-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px 0;
}

.portfolio-link {
    display: inline-block;
    margin-top: 16px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.case-spotlight {
    padding: 80px 0;
    background: #f8fafc;
}

.spotlight-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spotlight-content ul {
    list-style: none;
    margin: 24px 0;
}

.spotlight-content ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spotlight-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.spotlight-stat {
    text-align: center;
}

.spotlight-stat .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    gap: 24px;
}

.contact-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
}

.contact-card i {
    font-size: 28px;
    color: #667eea;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 4px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    width: 100%;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #4a5568;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 60px;
    color: #48bb78;
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.faq-contact {
    padding: 60px 0;
    background: #f8fafc;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.faq-contact-item {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
}

.faq-contact-item i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 16px;
}

.btn-small {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 24px;
    background: #f0f0f0;
    border-radius: 40px;
    text-decoration: none;
    color: #667eea;
    font-weight: 500;
}

.map-section {
    padding: 0 0 80px;
}

.map-placeholder {
    height: 300px;
    background: #e2e8f0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.map-placeholder i {
    font-size: 48px;
    color: #4a5568;
}

/* CTA Small */
.cta-small {
    padding: 60px 0;
    background: #f8fafc;
}

.cta-small-wrapper {
    background: var(--primary);
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.cta-small-wrapper h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .process-grid,
    .pricing-grid,
    .courses-grid,
    .categories-grid,
    .agency-process-grid,
    .agency-pricing-grid,
    .portfolio-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .format-grid,
    .team-grid,
    .stories-grid,
    .faq-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .story-grid,
    .contact-grid,
    .agency-hero-grid,
    .freelancers-wrapper,
    .spotlight-wrapper,
    .mv-grid,
    .service-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid,
    .pricing-grid,
    .courses-grid,
    .categories-grid,
    .agency-process-grid,
    .agency-pricing-grid,
    .portfolio-full-grid,
    .format-grid,
    .team-grid,
    .stories-grid,
    .faq-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .agency-price-card.featured {
        transform: scale(1);
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}


