/* =====================================================
   SOCIAL MEDIA PAGE STYLES - Digital Boost DZ Theme
===================================================== */

/* =====================================================
   HERO SECTION
===================================================== */
.socialmedia-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, 
        var(--bg-hero-gradient-start) 0%, 
        #F0EBFD 50%, 
        #FFFFFF 100%
    );
    padding: 160px 40px 80px;
    text-align: center;
}

.socialmedia-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.socialmedia-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 30px;
}

.socialmedia-hero-title .line1 {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.socialmedia-hero-title .line1.highlight {
    color: var(--primary-purple);
}

.socialmedia-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

/* =====================================================
   SERVICE OVERVIEW SECTION
===================================================== */
.service-overview-section {
    padding: 100px 40px;
    background: white;
}

.overview-content {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(109, 91, 151, 0.1) 0%, rgba(109, 91, 151, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(109, 91, 151, 0.2);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================================================
   TESTIMONIAL SECTION
===================================================== */
.testimonial-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--bg-hero-gradient-start) 0%, var(--bg-hero-gradient-end) 100%);
}

.testimonial-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-purple);
    aspect-ratio: 1 / 1;
}

.testimonial-text blockquote {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* =====================================================
   WHY CHOOSE SECTION
===================================================== */
.why-choose-section {
    padding: 100px 40px;
    background: white;
}

.why-choose-section .section-title .desktop-text {
    display: inline;
}

.why-choose-section .section-title .mobile-text {
    display: none;
}

.why-choose-section .section-title .mobile-text .line1 {
    display: block;
    color: var(--text-main);
    margin-bottom: 5px;
}

.why-choose-section .section-title .mobile-text .line2 {
    display: block;
}

.why-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-point {
    padding: 45px;
    border-radius: 24px;
    text-align: right;
    transition: transform 0.3s ease;
}

.why-point:hover {
    transform: translateY(-10px);
}

.why-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 20px;
}

.why-point h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.4;
}

.why-point h3 span {
    display: block;
    color: var(--primary-purple);
}

.why-point p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* =====================================================
   COMPONENTS SECTION
===================================================== */
.components-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--bg-hero-gradient-start) 0%, var(--bg-hero-gradient-end) 100%);
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.component-card {
    padding: 40px 35px;
    border-radius: 24px;
    text-align: right;
    transition: transform 0.3s ease;
}

.component-card:hover {
    transform: translateY(-8px);
}

.component-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.component-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.component-card > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.component-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-right: 25px;
}

.component-features li:last-child {
    border-bottom: none;
}

.component-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-purple);
    font-weight: 700;
}

/* =====================================================
   PROCESS SECTION
===================================================== */
.process-section {
    padding: 100px 40px;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.process-step {
    padding: 40px 35px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-purple);
    opacity: 0.25;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.step-content > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-right: 25px;
}

.step-features li:last-child {
    border-bottom: none;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-purple);
    font-weight: 700;
}

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5E5475 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-title .desktop-text {
    display: inline;
}

.cta-title .mobile-text {
    display: none;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--accent-pink);
    margin-bottom: 40px;
}

.cta-subtitle .desktop-text {
    display: inline;
}

.cta-subtitle .mobile-text {
    display: none;
}

/* =====================================================
   RESPONSIVE - TABLET (max-width: 1024px)
===================================================== */
@media (max-width: 1024px) {
    .socialmedia-hero-title {
        font-size: 2.6rem;
    }
    
    .socialmedia-hero-title .line1 {
        font-size: 2rem;
    }
    
    .key-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-points-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .components-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   RESPONSIVE - MOBILE (max-width: 768px)
===================================================== */
@media (max-width: 768px) {
    .socialmedia-hero-section {
        padding: 130px 25px 60px;
        min-height: auto;
    }
    
    .socialmedia-hero-title {
        font-size: 2rem;
    }
    
    .socialmedia-hero-title .line1 {
        font-size: 1.5rem;
    }
    
    .socialmedia-hero-subtitle {
        font-size: 1.05rem;
    }
    
    .service-overview-section,
    .testimonial-section,
    .why-choose-section,
    .components-section,
    .process-section,
    .cta-section {
        padding: 60px 25px;
    }
    
    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-item {
        padding: 35px 25px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
        gap: 30px;
    }
    
    .testimonial-image img {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
    }
    
    .testimonial-text blockquote {
        font-size: 1.05rem;
    }
    
    .why-choose-section .section-title .desktop-text {
        display: none;
    }
    
    .why-choose-section .section-title .mobile-text {
        display: block;
    }
    
    .why-points-grid {
        gap: 25px;
        margin-top: 40px;
    }
    
    .why-point {
        padding: 35px;
        text-align: center;
    }
    
    .why-point h3 {
        text-align: center;
    }
    
    .why-number {
        font-size: 2.5rem;
    }
    
    .components-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .component-card {
        padding: 35px 30px;
        text-align: center;
    }
    
    .component-icon {
        text-align: center;
    }
    
    .component-features li {
        text-align: right;
    }
    
    .process-grid {
        gap: 25px;
        margin-top: 40px;
    }
    
    .process-step {
        padding: 35px 30px;
    }
    
    .step-header {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-content h3 {
        text-align: center;
    }
    
    .step-features li {
        text-align: right;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-title .desktop-text {
        display: none;
    }
    
    .cta-title .mobile-text {
        display: block;
    }
    
    .cta-subtitle .desktop-text {
        display: none;
    }
    
    .cta-subtitle .mobile-text {
        display: block;
    }
}

/* =====================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
===================================================== */
@media (max-width: 480px) {
    .socialmedia-hero-section {
        padding: 110px 20px 50px;
    }
    
    .socialmedia-hero-title {
        font-size: 1.75rem;
    }
    
    .socialmedia-hero-title .line1 {
        font-size: 1.35rem;
    }
    
    .socialmedia-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .service-overview-section,
    .testimonial-section,
    .why-choose-section,
    .components-section,
    .process-section,
    .cta-section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-image img {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
        border-width: 4px;
    }
    
    .testimonial-text blockquote {
        font-size: 0.95rem;
    }
    
    .why-point {
        padding: 28px 22px;
    }
    
    .why-number {
        font-size: 2rem;
    }
    
    .why-point h3 {
        font-size: 1.2rem;
    }
    
    .component-card {
        padding: 30px 25px;
    }
    
    .process-step {
        padding: 30px 25px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}