/* Press Room Styles */
.press-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.press-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/press-bg.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content > p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Rotating Quotes */
.hero-quotes {
    position: relative;
    min-height: 140px;
    margin-top: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-quote {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-quote.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 0 0 20px 0;
    line-height: 1.7;
    font-weight: 300;
}

.hero-quote cite {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 600;
    color: #ffd700;
}

/* NewsWire Section */
.newswire-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* News Carousel */
.news-carousel-container {
    position: relative;
    margin-bottom: 50px;
    padding: 0 60px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--theme-color), #b91c1c);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(214, 34, 35, 0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #b91c1c, var(--theme-color));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(214, 34, 35, 0.4);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.news-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    transition: transform 0.6s ease;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.news-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(214, 34, 35, 0.15);
}

.news-card.featured {
    border: 2px solid #007bff;
    position: relative;
}

.news-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    z-index: 1;
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 2.5rem;
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.news-content {
    padding: 30px;
}

.news-category {
    color: var(--theme-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: var(--theme-color);
}

.news-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.news-meta .date {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #b91c1c;
    transform: translateX(5px);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, var(--theme-color), #b91c1c);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(214, 34, 35, 0.3);
}

/* Media Coverage Section */
.media-coverage-section {
    padding: 100px 0;
    background: white;
}

.coverage-list {
    max-width: 1000px;
    margin: 0 auto;
}

.coverage-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 40px;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
}

.coverage-item:hover {
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.coverage-logo {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 15px;
}

.coverage-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.coverage-item:hover .coverage-logo img {
    filter: grayscale(0%);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    font-size: 1.2rem;
}

.coverage-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.coverage-content blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin: 0 0 25px 0;
    line-height: 1.7;
    border-left: 5px solid var(--theme-color);
    padding-left: 25px;
    background: rgba(214, 34, 35, 0.05);
    padding: 20px 25px;
    border-radius: 0 15px 15px 0;
}

.coverage-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.coverage-meta .publication {
    font-weight: 700;
    color: var(--theme-color);
    font-size: 1.1rem;
}

.coverage-meta .date {
    color: #999;
    font-size: 0.95rem;
}

.external-link {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid var(--theme-color);
    border-radius: 25px;
    font-size: 0.9rem;
}

.external-link:hover {
    background: var(--theme-color);
    color: white;
    transform: translateY(-2px);
}

/* Press Resources Section */
.press-resources-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.resources-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.resources-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 25px;
    position: relative;
}

.resources-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    border-radius: 2px;
}

.resources-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.resource-list {
    display: grid;
    gap: 25px;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.resource-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(214, 34, 35, 0.15);
}

.resource-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color), #b91c1c);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 25px rgba(214, 34, 35, 0.3);
}

.resource-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.resource-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-link {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--theme-color);
    border-radius: 25px;
    font-size: 0.9rem;
}

.download-link:hover {
    background: var(--theme-color);
    color: white;
    transform: translateY(-2px);
}

/* Contact Card */
.contact-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
    border: 1px solid #f0f0f0;
}

.contact-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(214, 34, 35, 0.05);
}

.contact-item i {
    color: var(--theme-color);
    font-size: 1.3rem;
    margin-top: 5px;
}

.contact-item div strong {
    display: block;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item div span {
    color: #666;
    font-size: 0.95rem;
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--theme-color), #b91c1c);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b91c1c, var(--theme-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(214, 34, 35, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--theme-color), #b91c1c);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/newsletter-bg.jpg') center/cover;
    opacity: 0.1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    background: white;
    color: #333;
}

.newsletter-form .btn-primary {
    padding: 18px 35px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.newsletter-form .btn-primary:hover {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .resources-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .news-carousel-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .coverage-item {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 25px;
    }
    
    .coverage-logo {
        width: 120px;
        height: 60px;
        margin: 0 auto;
    }
    
    .newsletter-form {
        flex-direction: column;
        background: none;
        padding: 0;
    }
    
    .newsletter-form input,
    .newsletter-form .btn-primary {
        border-radius: 15px;
    }
    
    .news-carousel-container {
        padding: 0 20px;
    }
    
    .hero-quotes {
        padding: 25px 20px;
        min-height: 120px;
    }
    
    .hero-quote {
        top: 25px;
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .resource-item {
        padding: 25px 20px;
    }
    
    .coverage-item {
        padding: 25px 20px;
    }
}

