/* Guests Page Styles */

.guests-hero, .category-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    text-align: center;
}

.back-link {
    display: inline-block;
    color: var(--teal);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.back-link:hover {
    opacity: 0.8;
}

/* Categories Grid */
.categories-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(26, 153, 128, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 10px 40px var(--teal-glow);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.category-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-count {
    display: inline-block;
    background: var(--teal);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Guests Grid */
.guests-grid-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.guest-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(26, 153, 128, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
    display: block;
}

.guest-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 10px 40px var(--teal-glow);
}

.guest-photo-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(26, 153, 128, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.guest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--teal);
}

.guest-card-content {
    padding: 2rem;
}

.guest-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.guest-company {
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.guest-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.guest-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.guest-topic-tag {
    background: rgba(26, 153, 128, 0.1);
    border: 1px solid var(--teal);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--teal);
}

/* Guest Detail Page */
.guest-detail-section {
    padding: 10rem 0 6rem;
    background: var(--dark-gray);
    min-height: 100vh;
}

.guest-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.guest-content-new {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.guest-main-content-new {
    max-width: 800px;
}

.company-name {
    font-size: 4rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.brief-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 500;
}

.long-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.long-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.guest-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(26, 153, 128, 0.05);
    border-left: 4px solid var(--teal);
    border-radius: 10px;
}

.guest-sidebar-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-photo,
.sidebar-tech-photo {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(26, 153, 128, 0.3);
}

.sidebar-photo img,
.sidebar-tech-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sidebar-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(26, 153, 128, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.sidebar-video video,
.sidebar-video iframe {
    width: 100%;
    height: auto;
    min-height: 300px;
    display: block;
}

.sidebar-video video {
    background: #000;
}

/* Map Section */
.guest-map-section {
    margin: 4rem 0;
}

.guest-map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--teal);
}

.guest-map {
    width: 100%;
    height: 100%;
}

/* Video Section */
.guest-video-section {
    margin: 4rem 0;
}

.guest-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--teal);
}

.guest-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 968px) {
    .guest-content-new {
        grid-template-columns: 1fr;
    }

    .company-name {
        font-size: 2.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .guests-grid {
        grid-template-columns: 1fr;
    }
}

