/* ================================================
   SUMMIT DETAIL PAGE - COMPLETE CSS
   =============================================== */

/* ================================================
   HERO SECTION
   =============================================== */
.summit-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 240, 230, 0.85), rgba(235, 225, 210, 0.85)),url('../images/map.svg');
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.summit-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-primary) !important;
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #b8860b !important;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
    
}

.summit-hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.summit-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    
}

.summit-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    
}

.summit-meta i {
    color: var(--dark);
    font-size: 1.2rem;
}

.summit-subtitle {
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.summit-image-wrapper {
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.summit-hero-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(223, 182, 82, 0.15) 0%, rgba(1, 34, 79, 0.15) 100%);
    border-radius: 12px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   STATS SECTION - BORDERS ON HOVER ONLY
   =============================================== */
.summit-stats-section {
    padding: 60px 0;
    background: var(--light);
}

.stat-modern {
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: none !important;
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(1, 34, 79, 0.15);
    transition: all 0.3s ease;
}

.stat-modern:hover .stat-icon-modern {
    transform: scale(1.15) rotate(360deg);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
}

.stat-bar {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ================================================
   CONTENT SECTION - BORDERS ON HOVER ONLY
   =============================================== */
.summit-content-section {
    background: var(--white);
}

.summit-card {
    background: var(--white);
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(1, 34, 79, 0.08);
    transition: all 0.3s ease;
}



.summit-card.featured {
   background: var(--white);
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(1, 34, 79, 0.08);
    transition: all 0.3s ease;
}



.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-title i {
    font-size: 1.8rem;
    color: var(--primary) !important;
}

/* ================================================
   ABOUT SECTION STYLES
   =============================================== */
.summit-description p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.summit-description p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    margin: 30px 0;
    padding: 25px;
    background: rgba(223, 182, 82, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.about-highlights-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.highlight-item {
    display: flex;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.about-features {
    padding: 25px;
    background: var(--light);
    border-radius: 12px;
}

.about-features-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.summit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--general-gradient);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--secondary);
    color: var(--primary);
}

.tag-item i {
   color: var(--dark);
}

.tag-item:hover i {
    color: var(--primary);
}

/* ================================================
   SPEAKERS SECTION
   =============================================== */
.speakers-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
}

.speaker-card-premium {
    background: var(--light);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.speaker-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.speaker-image-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--secondary);
    box-shadow: 0 8px 25px rgba(1, 34, 79, 0.15);
}

.speaker-img-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.speaker-role {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
}

.speaker-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   GALLERY SECTION - FULL WIDTH
   =============================================== */
.summit-gallery-section {
    padding: 20px 0;
    background: var(--light);
}

.gallery-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
}

.gallery-grid-fullwidth {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f2c26a8;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 60px;
    height: 60px;
    background: var(--general-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    transform: scale(1.1);
    background: var(--white);
    color: var(--secondary);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ================================================
   SIDEBAR REGISTRATION - PREMIUM
   =============================================== */
.premium-register {
    background: linear-gradient(135deg, var(--white) 0%, rgba(223, 182, 82, 0.05) 100%);
}

.register-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary);
}

.register-header h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0 0 0;
}

.price-section {
    padding: 20px;
    background: rgba(223, 182, 82, 0.12);
    border-radius: 12px;
}

.price-badge {
    display: block;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.save-text {
    display: block;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 8px;
}

.register-form .form-control {
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.register-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(223, 182, 82, 0.25);
    outline: none;
}

/* ================================================
   VENUE CARD - PREMIUM
   =============================================== */
.venue-header-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--primary);
    border-radius: 12px 12px 0 0;
    color: var(--white);
}

.venue-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.venue-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.venue-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 5px;
}

.venue-img {
    height: 150px;
    object-fit: cover;
}

.venue-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.venue-address {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.venue-amenities {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.amenity i {
    color: var(--secondary);
}

/* ================================================
   INFO CARD
   =============================================== */
.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gray);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--success);
    min-width: 20px;
}

/* ================================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 992px) {
    .summit-hero-title {
        font-size: 2.8rem;
    }
    .summit-meta {
        gap: 15px;
    }
    .card-body {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .summit-hero {
        padding: 50px 0;
    }
    .summit-hero-title {
        font-size: 2.2rem;
    }
    .summit-meta {
        flex-direction: column;
        gap: 10px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .summit-stats-section,
    .summit-content-section,
    .summit-gallery-section {
        padding: 40px 0;
    }
    .stat-modern {
        margin-bottom: 20px;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .speaker-image-circle {
        width: 120px;
        height: 120px;
    }
    .about-highlights {
        padding: 20px;
    }
    .highlight-item {
        gap: 12px;
    }
    .gallery-grid-fullwidth {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .summit-hero-title {
        font-size: 1.8rem;
    }
    .summit-subtitle {
        font-size: 1rem;
    }
    .summit-meta span {
        font-size: 0.9rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
    .card-title {
        font-size: 1.2rem;
        gap: 10px;
    }
    .card-title i {
        font-size: 1.5rem;
    }
    .price-amount {
        font-size: 2.2rem;
    }
    .register-form .form-control {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    .speaker-image-circle {
        width: 100px;
        height: 100px;
    }
    .speaker-name {
        font-size: 1.05rem;
    }
    .gallery-grid-fullwidth {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .venue-amenities {
        flex-direction: row;
        gap: 15px;
    }
}