/* PR 360 Page Styles */

/* Hero Section */
.pr360-hero {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 150px 0 80px;
    overflow: hidden;
    border: none !important;
}

.pr360-hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pr360-hero .hero-content {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.pr360-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pr360-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pr360-hero .hero-buttons {
    display: flex;
    gap: 15px;
}

.pr360-hero .hero-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-icons-container {
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.media-icon i {
    font-size: 24px;
}

.media-icon.news {
    top: 20%;
    left: 20%;
    color: #1565C0;
    animation-delay: 0s;
}

.media-icon.podcast {
    top: 15%;
    right: 20%;
    color: #8E24AA;
    animation-delay: 0.4s;
}

.media-icon.video {
    bottom: 20%;
    left: 15%;
    color: #D32F2F;
    animation-delay: 0.8s;
}

.media-icon.broadcast {
    top: 50%;
    right: 15%;
    color: #0097A7;
    animation-delay: 1.2s;
}

.media-icon.social {
    bottom: 15%;
    right: 25%;
    color: #FB8C00;
    animation-delay: 1.6s;
}

/* What is PR 360 Section */
.what-is-pr360 {
    padding: 80px 0;
}

.pr360-overview {
    display: flex;
    align-items: center;
    gap: 40px;
}

.overview-content {
    flex: 1;
}

.overview-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Transformation Showcase Section */
.transformation-showcase {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.transformation-triangle {
    position: relative;
    margin-top: 60px;
}

.press-release-top {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.press-release-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
    z-index: 3;
}

.press-release-box .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.press-release-box h3 {
    margin-bottom: 10px;
}

.transformation-paths {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.path {
    position: absolute;
    top: 100px;
    height: 2px;
    background-color: var(--primary);
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 1s ease;
}

.path-news {
    width: 2px;
    height: 100px;
    left: calc(50% - 300px);
    transform: scaleY(0);
}

.path-podcast {
    width: 2px;
    height: 100px;
    left: calc(50% - 150px);
    transform: scaleY(0);
}

.path-video {
    width: 2px;
    height: 100px;
    left: 50%;
    transform: scaleY(0);
}

.path-broadcast {
    width: 2px;
    height: 100px;
    left: calc(50% + 150px);
    transform: scaleY(0);
}

.path-social {
    width: 2px;
    height: 100px;
    left: calc(50% + 300px);
    transform: scaleY(0);
}

.transformation-items {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.transform-item {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(20% - 20px);
    text-align: center;
    transition: all 0.3s ease;
}

.transform-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.transform-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.transform-item.news .transform-icon {
    color: #1565C0;
}

.transform-item.podcast .transform-icon {
    color: #8E24AA;
}

.transform-item.video .transform-icon {
    color: #D32F2F;
}

.transform-item.broadcast .transform-icon {
    color: #0097A7;
}

.transform-item.social .transform-icon {
    color: #FB8C00;
}

.transform-content h3 {
    margin-bottom: 10px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.platform-logos img {
    height: 25px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.platform-logos img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.platform-logos.social-full {
    flex-wrap: wrap;
}

.platform-logos.social-full img {
    height: 20px;
    margin-bottom: 5px;
}

/* Format Details Section */
.format-details {
    padding: 80px 0;
}

.format-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none !important;
}

.format-card.reverse {
    flex-direction: row-reverse;
}

.format-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.format-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.format-content {
    flex: 1;
    padding: 40px;
}

.format-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.format-card:nth-child(1) .format-icon {
    color: #1565C0;
}

.format-card:nth-child(2) .format-icon {
    color: #8E24AA;
}

.format-card:nth-child(3) .format-icon {
    color: #D32F2F;
}

.format-card:nth-child(4) .format-icon {
    color: #0097A7;
}

.format-card:nth-child(5) .format-icon {
    color: #FB8C00;
}

.format-icon i {
    font-size: 24px;
}

.format-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.format-content p {
    margin-bottom: 20px;
}

.format-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.format-features li i {
    color: #4CAF50;
    margin-right: 10px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    border: none !important;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pr360-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .pr360-overview {
        flex-direction: column;
    }
    
    .transformation-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .transform-item {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
    
    .format-card, 
    .format-card.reverse {
        flex-direction: column;
    }
    
    .format-image {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pr360-hero h1 {
        font-size: 2.5rem;
    }
    
    .transform-item {
        width: 100%;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
