/* About Page Styles */
.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.about-text h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.about-text ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.profile-image {
    margin-bottom: 1.5rem;
}

.profile-image .profile-initials {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: #2c3e50;
}

.stat span {
    font-size: 0.9rem;
    color: #5a6c7d;
}

/* Timeline Styles */
.experience {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2c3e50;
}

.timeline-date {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #34495e;
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Skills Styles */
.skills {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.skill-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.cert-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: #34495e;
    margin-bottom: 1rem;
}

.cert-date {
    background: #f8f9fa;
    color: #5a6c7d;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Education */
.education {
    padding: 80px 0;
    background-color: #ffffff;
}

.education-item {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.education-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.education-item h4 {
    color: #34495e;
    font-weight: 500;
    margin-bottom: 1rem;
}

.education-date {
    color: #5a6c7d;
    font-size: 0.9rem;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.service-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-icon {
    text-align: center;
    padding: 2rem 2rem 1rem;
}

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

.service-detail-card h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.service-description {
    padding: 0 2rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

.service-pricing {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: white;
    color: #2c3e50;
}

.cta .btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}

/* Blog Styles */
.featured-post {
    padding: 80px 0;
    background-color: #ffffff;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

.post-category {
    background: #2c3e50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content h2 {
    color: #2c3e50;
    margin: 1rem 0;
    font-size: 2rem;
}

.post-excerpt {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.featured-post-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.blog-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-image .post-image-placeholder {
    width: auto;
    height: auto;
    background: none;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: #2c3e50;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.blog-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #34495e;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    min-width: 300px;
    flex: 1;
    max-width: 400px;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    width: 90%;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #5a6c7d;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2c3e50;
}

/* Store Styles */
.featured-product {
    padding: 80px 0;
    background-color: #ffffff;
}

.featured-product-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    position: relative;
}

.featured-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.course {
    background: #3498db;
}

.product-badge.download {
    background: #27ae60;
}

.product-badge.consultation {
    background: #9b59b6;
}

.featured-product-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #5a6c7d;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1.1rem;
}

.price-current,
.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Products Grid */
.products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.product-header {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image {
    font-size: 3rem;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #5a6c7d;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2c3e50;
}

.testimonial-content p {
    font-style: italic;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #5a6c7d;
    font-size: 0.9rem;
}

/* Contact Styles */
.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #5a6c7d;
    margin-bottom: 0.3rem;
}

.contact-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.availability {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.availability h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.available {
    background: #27ae60;
}

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

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link-large:hover {
    background: #e9ecef;
}

.social-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.social-text h4 {
    color: #2c3e50;
    margin-bottom: 0;
}

.social-text p {
    color: #5a6c7d;
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    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: #2c3e50;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Components */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid,
    .featured-post-card,
    .featured-product-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-sidebar {
        position: static;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-item::before {
        left: 14px;
    }
}

@media (max-width: 768px) {
    .skills-categories,
    .services-grid-large,
    .products-grid,
    .blog-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form input {
        min-width: auto;
        max-width: none;
    }

    .modal-content {
        padding: 2rem;
        width: 95%;
    }

    .featured-post-card,
    .featured-product-card {
        padding: 2rem;
    }

    .product-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .skill-card,
    .service-card,
    .service-detail-card,
    .blog-card,
    .product-card,
    .testimonial-card,
    .faq-item {
        padding: 1.5rem;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links-large {
        gap: 0.5rem;
    }

    .social-link-large {
        padding: 0.8rem;
    }
}