/* ============================================
   Horizon Privé - Custom Landing Page Widgets
   ============================================ */

/* --- Trusted Partners --- */
.togo-trusted-partners {
    text-align: center;
    padding: 40px 0;
}

.togo-partners-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 30px;
}

.togo-partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.togo-partner-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.togo-partner-logo:hover {
    opacity: 1;
}

.togo-partner-logo img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.togo-partner-logo:hover img {
    filter: grayscale(0%);
}

.togo-partner-name {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    white-space: nowrap;
}

/* --- Elite Services --- */
.togo-elite-wrap {
    display: flex;
    align-items: center;
    background-color: #111111;
    padding: 40px;
    gap: 0;
    border-radius: 8px;
}

.togo-elite-left {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 30px;
}

.togo-elite-badge span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a96e;
    line-height: 1.4;
}

.togo-elite-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin: 0;
}

.togo-elite-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #c9a96e;
    color: #c9a96e;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 4px;
}

.togo-elite-btn:hover {
    background-color: #c9a96e;
    color: #111111;
}

.togo-elite-divider {
    width: 1px;
    height: 120px;
    background-color: #333333;
    flex: 0 0 1px;
}

.togo-elite-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    gap: 10px;
}

.togo-elite-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
}

.togo-elite-icon {
    width: 40px;
    height: 40px;
    color: #c9a96e;
}

.togo-elite-icon svg {
    width: 100%;
    height: 100%;
}

.togo-elite-label {
    font-size: 11px;
    font-weight: 500;
    color: #cccccc;
    line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .togo-elite-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .togo-elite-left {
        flex: none;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    .togo-elite-divider {
        width: 80%;
        height: 1px;
    }
    .togo-elite-right {
        flex: none;
        padding-left: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .togo-elite-right {
        gap: 20px;
    }
    .togo-elite-item {
        flex: 0 0 25%;
    }
}

/* --- Private Jet Experiences --- */
.togo-jet-wrap {
    position: relative;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.togo-jet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.togo-jet-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 500px;
}

.togo-jet-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 12px;
}

.togo-jet-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.togo-jet-desc {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
    margin: 0 0 28px;
}

.togo-jet-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.togo-jet-btn:hover {
    background-color: #fff;
    color: #111111;
}

/* --- Responsive (Jet) --- */
@media (max-width: 768px) {
    .togo-jet-wrap {
        min-height: 300px;
    }
    .togo-jet-content {
        padding: 40px 20px;
    }
    .togo-jet-title {
        font-size: 28px;
    }
}
