/* CUSTOM STYLES FOR SOCIAL MEDIA DETAIL PAGE */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-blue: #7B90D1;
    --navy-text: #2D3E50;
    --light-gray: #F8F9FB;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.portfolio-page .work-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

/* HERO SECTION */
.detail-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-content .back-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: opacity 0.3s;
}

.hero-content .back-link:hover {
    opacity: 0.7;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content .work-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.hero-image-container {
    perspective: 1000px;
    text-align: right;
}

.hero-mockup {
    width: 100%;
    max-width: 320px;
    border-radius: 25px;
    box-shadow: var(--glass-shadow);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

/* KEY RESULTS & CONTENT HIGHLIGHTS */
.key-results, .content-highlights {
    margin-bottom: 60px;
}

.key-results h2, .content-highlights h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.results-grid, .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-card, .highlight-card {
    background: #fff;
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.result-card:hover, .highlight-card:hover {
    transform: translateY(-5px);
}

.result-card .number, .highlight-card .number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.result-card .label, .highlight-card .label {
    font-size: 15px;
    color: #666;
    line-height: 1.3;
}

/* SERVICES SECTION */
.services-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    margin-bottom: 60px;
}

.services-section h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.services-list {
    list-style: none;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon::after {
    content: '';
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -2px;
}

.service-text {
    font-size: 17px;
    line-height: 1.5;
    color: #444;
}

.service-text strong {
    color: var(--navy-text);
}

/* BANNER SECTION */
.banner-section {
    margin-bottom: 60px;
}

.full-banner {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .detail-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-image-container {
        text-align: center;
    }
    
    .hero-mockup {
        transform: none;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-mockup:hover {
        transform: scale(1.05);
    }
    
    .results-grid, .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .services-section {
        padding: 30px 20px;
    }
    
    .service-text {
        font-size: 15px;
    }
}
