/* Classic Social Proof Page Styles */
.social-hero {
    height:70vh;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Classic Section Styling */
.influencer-section,
.press-section,
.reviews-section,
.instagram-section {
    padding: 80px 0;
    background: white;
}

.press-section {
    background: #f8f9fa;
}

.instagram-section {
    background: var(--theme-color);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
}

.instagram-section .section-header h2 {
    color: white;
}

.section-header h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.instagram-section .section-header h2::after {
    background: white;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.instagram-section .section-header p {
    color: rgba(255,255,255,0.8);
}

/* Classic Influencer Cards */
.influencer-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.influencer-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.influencer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--theme-color);
}

.influencer-media {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.influencer-media img,
.influencer-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(214, 34, 35, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.play-overlay:hover {
    background: white;
    color: var(--theme-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.influencer-content {
    padding: 30px;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--theme-color);
}

.influencer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.influencer-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.info-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.info-text span {
    font-size: 0.85rem;
    color: #666;
}

.verified-badge {
    margin-left: auto;
    color: var(--theme-color);
    font-size: 1.1rem;
}

/* Classic Press Cards */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.press-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.press-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--theme-color);
}

.press-logo {
    height: 50px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

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

.press-card:hover .press-logo img {
    filter: grayscale(0%);
}

.press-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.press-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.press-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.date {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #333;
}

/* Classic Review Cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.review-card.featured {
    border-color: var(--theme-color);
    box-shadow: 0 4px 20px rgba(214, 34, 35, 0.1);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: var(--theme-color);
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.reviewer-details span {
    font-size: 0.8rem;
    color: #666;
}

/* Classic Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-stats {
    display: flex;
    gap: 15px;
    color: white;
    font-size: 0.85rem;
}

/* Classic Buttons */
.reviews-cta,
.instagram-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary,
.btn-primary {
    padding: 12px 30px;
    border: 2px solid var(--theme-color);
    background: transparent;
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--theme-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--theme-color);
    color: white;
}

.btn-primary:hover {
    background: white;
    color: var(--theme-color);
}

/* Add Review Button */
.btn-add-review, .btn-add-endorsement {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: 15px;
    transition: background 0.3s ease;
}

.btn-add-review:hover, .btn-add-endorsement:hover {
    background: #c62d2e;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

/* Form Styles */
.review-form .form-group, .endorsement-form .form-group {
    margin-bottom: 20px;
}

.review-form label, .endorsement-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.review-form input, .review-form select, .review-form textarea,
.endorsement-form input, .endorsement-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 5px;
}

.star-rating .star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: var(--theme-color);
}

/* Social Links for Influencers */
.social-links {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

.social-links a {
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #0077b5;
}

.instagram-link:hover {
    color: #e4405f;
}

/* Instagram Branding */
.instagram-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.instagram-logo-large {
    font-size: 2rem;
    color: #e4405f;
    transform: scale(1.25);
}

.instagram-handle {
    background: var(--theme-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Classic Placeholders */
.image-placeholder {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.5rem;
    border: 2px dashed #dee2e6;
    font-weight: 300;
}

.influencer-media .image-placeholder {
    height: 250px;
    background: var(--theme-color);
    color: white;
    font-size: 2rem;
    border: none;
}

.press-logo .image-placeholder {
    height: 50px;
    width: 120px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

.reviewer-info .image-placeholder,
.influencer-info .image-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #f0f0f0;
}

.instagram-post .image-placeholder {
    aspect-ratio: 1;
    background: var(--theme-color);
    color: white;
    font-size: 2rem;
    border: 2px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .influencer-slider,
    .press-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* Remove all font overrides and use default theme font */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
}

.press-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Remove the font family overrides at the bottom */






